Replace 4.6.0 -> 4-6-0 -> 11.7 2022 17.26 3.9

Introduction

  1. first
  1. second

Because the pre-built Windows libraries available for OpenCV 4.6.0 do not include the CUDA modules, or support for the Nvidia Video Codec SDK, Nvidia cuDNN, Intel Media SDK, I have included the build instructions, below for anyone who is interested. If you just need the Windows libraries then go to Download OpenCV 4.6.0 with CUDA 11.7. To get an indication of the performance boost from calling the OpenCV CUDA functions with these libraries see the OpenCV 3.4 GPU CUDA Performance Comparisson (nvidia vs intel).

The guide below details instructions on compiling the 64 bit version of OpenCV 4.6.0 shared libraries with Visual Studio 2022, CUDA 11.7, and optionally the Nvidia Video Codec SDK, Nvidia cuDNN, Intel Media SDK, and Python bindings for accessing OpenCV CUDA modules from within Python.

The main topics covered are given below. Although most of the sections can be read in isolation I recommend reading the pre-build checklist first to check whether you will benefit from and/or need to compile OpenCV with CUDA support.

Pre-build Checklist

Before continuing there are a few things to be aware of:

  1. This guide is for OpenCV 4.6.0. Whilst the instructions should also work on newer versions, this is not guaranteed so please only ask questions related to the stable 4.6.0 release on this page.
  2. You can download all the pre-built binaries described in this guide from the downloads page. Unless you want to;
    • build for another version of Visual Studio; and/or
    • include non-free algorithms; and/or
    • generate CUDA binaries compatible with devices of specific compute capability see Choosing the compute-capability; and/or
    • use different versions of Nvidia Video Codec SDK or cuDNN; and/or
    • build bindings for python versions other than to 3.9;
    or just want to build OpenCV from scratch, you may find they are all you need.
  3. If you have already tried to build and are having issues check out the troubleshooting guide.
  4. Thanks to Hamdi Sahloul, since August 2018 the CUDA modules can now be called directly from Python, to include this support see the including Python bindings section.
  5. The procedure outlined has been tested on Visual Studio Community 2022 (17.2.6).
  6. The OpenCV DNN modules are now CUDA accelerated. To target you need to install cuDNN (see the below for instructions) before building. Note:
    • If you want to use your application on a different machine you will need to ensure that all the cuDNN dll's are installed on that machine, either in a location on the system/user path or in the same directory as your application.
    • Installing cuDNN will automatically cause OpenCV to be built with the CUDA DNN backend, therefore if you have cuDNN installed but do not wish to build OpenCV with the CUDA backend (making it dependant on cuDNN) you will need to disable the module with -DOPENCV_DNN_CUDA=OFF.
  7. If you have built OpenCV with CUDA support then to use those libraries and/or redistribute applications built with them on any machines without the CUDA toolkit installed, you will need to ensure those machines have,
    • an Nvidia capable GPU with driver version of 516.01 or later (see this for a full list of CUDA Toolkit versions and their required drivers), and
    • the CUDA dll's (cublas64_xx.dll, nppc64_xx.dll etc.) placed somewhere on the system or user path, or in the same directory as the executable. These can be located in the following directory.
      C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin
  8. Depending on the hardware the build time can be over 3 hours. If this is an issue you can speed this up by generating the build files with ninja and/or targeting a specific CUDA compute capability.

Prerequisites

There are a couple of components you need to download and/or install before you can get started, you first need to:

  1. Install Visual Studio 2022, selecting the "Desktop development with C++" workload shown in the image below. If you already have an installation ensure that the correct workload is installed and that you have updated to the latest version (17.2.6 is used in this guide).
  2. Download the source files for both OpenCV and OpenCV contrib, available on GitHub. Either clone the git repos OpenCV and OpenCV Contrib making sure to checkout the 4.6.0 tag or download these archives OpenCV 4.6.0 and OpenCV Contrib 4.6.0 containing all the source file.

    Note: I have seen lots of guides including instructions to download and use git to get the source files, however this is a completely unnecessary step. If you are a developer and you don't already have git installed and configured then, I would assume there is a good reason for this and I would not advise installing just to build OpenCV.

import requests, zipfile, io, os
opencv_urls = ["https://github.com/opencv/opencv/archive/4.6.0.zip", "https://github.com/opencv/opencv_contrib/archive/4.6.0.zip"]
opencv_dirs = []
src_path = "D:/opencv/"
build_path = "D:/build/opencv"
os.makedirs(src_path, exist_ok=True)
for opencv_url in opencv_urls:    
    r = requests.get(opencv_url)
    z = zipfile.ZipFile(io.BytesIO(r.content))
    opencv_dirs.append(os.path.join(src_path, z.namelist()[0]))
    z.extractall(src_path)
  1. Install CMake - Version 3.23.2 is used in the guide.
  2. Install The CUDA 11.7 Toolkit. Note: If your system path is too long, CUDA will not add the path to its binaries C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin during installation. If you receive a warning about this at the end of the installation process do not forget to manually add the path to your system path, otherwise opencv_world460.dll will fail to load.
  3. Optional - To decode video on the GPU with Nvidia Video Codec SDK
    • Register and download the Video Codec SDK. -Extract and copy the contents of the Interface to the include and the Lib to the lib directory inside your CUDA installation. For CUDA 11.7 your CUDA installation directory is
      C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7

Video Codec SDK 11.1 is used in this guide.

** Note: Before building you may want to ensure that your GPU has decoding support by refering to <a href="https://developer.nvidia.com/video-encode-decode-gpu-support-matrix#Decoder" rel="noopener noreferrer" target="_blank">Nvidia Video Decoder Support Matrix</a>. **
  1. Optional - To use the DNN CUDA backend:
    • Register and download cuDNN.
    • Extract and copy the bin, include and lib directories to your CUDA installation. For CUDA 11.7 your CUDA installation directory is
      C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7
      cuDNN v8.4.1.50 is used in this guide.
  2. Optional - To accelerate video decoding on Intel CPU's with Quick Sync register and download and install Intel Media SDK.</li> Media SDK 2021 R1 is used in this guide.
  3. Optional – To call OpenCV CUDA routines from python install Mambaforge-Windows-x86_64. All other python distribution will work, however I strongly recommend starting with a fresh install of this distribution to remove any potential conflicts from existing packages and/or configuration settings. Then once everything works you should be able to copy the installation to whichever distribution you like.

Generating OpenCV build files with CMake

Before you can build OpenCV you have to generate the build files with CMake. There are two ways to do this, from the command prompt or with the CMake GUI, however by far the quickest and easiest way to proceed is to use the command prompt to generate the base configuration. Then if you want to add any additional configuration options, you can open up the build directory in the CMake GUI as described here.

In addition there are several ways to build OpenCV using Visual Studio. For simplicity only two methods are discussed here:

  1. Building OpenCV with Visual Studio solution files.
  2. Building OpenCV with the ninja build system to reduce the build time.
Finally instructions are included for building and using the Python bindings to access the OpenCV CUDA modules.

Building OpenCV 4.6.0 with CUDA, with Visual Studio solution files from the command prompt (cmd)

The following steps will build the opencv_world460.dll using NVIDIA's recommended settings for future hardware compatibility. This does however have two drawbacks, first the build can take several hours to complete and second, the shared library will be at least 1.09GB depending on the configuration that you choose below. To find out how to reduce both the compilation time and size of opencv_world460.dll read choosing the compute-capability first and then continue as below. If you wish to build the Python bindings and/or use the Ninja build system then see section including python bindings and/or decreasing the build time with Ninja respectively before proceeding.

  1. Open up the command prompt (windows key + r, then type cmd and press enter).
  2. Set the location of the source files and build directory, by entering the text shown below, first setting PATH_TO_OPENCV to the root of the main OpenCV source files you downloaded or cloned (the directory containing 3rdparty, apps, build, etc.), PATH_TO_OPENCV_CONTRIB_MODULES to the modules directory inside the OpenCV contrib repo (the directory containing cudaarithm, cudabgsegm, etc) and PATH_TO_OPENCV_BUILD to your chosen build directory.

    set "opencv_source=PATH_TO_OPENCV"
    set "opencv_contrib_source=PATH_TO_OPENCV_CONTRIB_MODULES"
    set "opencv_build=PATH_TO_OPENCV_BUILD"
    set "generator=Visual Studio 17 2022"

    e.g.

    set "opencv_source=D:/opencv/opencv"
    set "opencv_contrib_source=D:/opencv/contrib"
    set "opencv_build=D:/build/opencv"
    set "generator=Visual Studio 17 2022"

opencv_source=opencv_dirs[0]
opencv_contrib_source=os.path.join(opencv_dirs[1],"modules")
opencv_build_vs=os.path.join(build_path,"vs_base")
generator="Visual Studio 17 2022"
  1. Copy the below to the command prompt. This is the base configuration and will build opencv_world460.dll with CUDA including and the corresponding tests and examples. Additionally if the Nvidia Video Codec SDK, cuDNN or the Intel Media SDK are installed the corresponding modules will automatically be included.

    "C:\Program Files\CMake\bin\cmake.exe" -H"%openCvSource%/" -DOPENCV_EXTRA_MODULES_PATH="%openCVExtraModules%/"  -B"%openCvBuild%/" -G"%generator%" ^
    -DINSTALL_TESTS=ON -DINSTALL_C_EXAMPLES=ON -DBUILD_EXAMPLES=ON ^  
    -DBUILD_opencv_world=ON ^  
    -DWITH_CUDA=ON -DCUDA_TOOLKIT_ROOT_DIR="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.1" -DCUDA_FAST_MATH=ON  -DWITH_CUBLAS=ON -DCUDA_ARCH_PTX=8.6 -DWITH_NVCUVID=ON ^  
    -DWITH_OPENGL=ON ^  
    -DWITH_MFX=ON

    "C:\Program Files\CMake\bin\cmake.exe" -H"%openCvSource%/" -DOPENCV_EXTRA_MODULES_PATH="%openCVExtraModules%/" -B"%openCvBuild%/" -G"%generator%" ^ -DINSTALL_TESTS=ON -DINSTALL_C_EXAMPLES=ON -DBUILD_EXAMPLES=ON ^
    -DBUILD_opencv_world=ON ^
    -DWITH_CUDA=ON -DCUDA_TOOLKIT_ROOT_DIR="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7" -DCUDA_FAST_MATH=ON -DWITH_CUBLAS=ON -DCUDA_ARCH_PTX=8.6 -DWITH_NVCUVID=ON ^
    -DWITH_OPENGL=ON ^
    -DWITH_MFX=ON

cmake_exe = "C:/Program Files/CMake/bin/cmake.exe"
cmake_base_config = ["-H"+opencv_source,
              "-DOPENCV_EXTRA_MODULES_PATH="+opencv_contrib_source, "-DBUILD_opencv_world=ON","-DINSTALL_TESTS=ON",
              "-DINSTALL_C_EXAMPLES=ON","-DBUILD_EXAMPLES=ON","-DWITH_CUDA=ON",
              "-DCUDA_TOOLKIT_ROOT_DIR=\"C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7\"","-DCUDA_FAST_MATH=ON",
              "-DWITH_CUBLAS=ON","-DCUDA_ARCH_PTX=8.6","-DWITH_NVCUVID=ON","-DWITH_OPENGL=ON","-DWITH_MFX=ON"]
cmake_base_vs = [cmake_exe] + cmake_base_config + ["-B"+opencv_build_vs,"-G"+generator]

Then append the following commands as required, and press enter to run CMake:

  • Remove all optional CUDA modules. This is useful if you only want to use the CUDA backend for the DNN module and will significantly reduce compilation time and size of the opencv_world460.dll.

    -DBUILD_opencv_cudaarithm=OFF -DBUILD_opencv_cudabgsegm=OFF -DBUILD_opencv_cudafeatures2d=OFF -DBUILD_opencv_cudafilters=OFF -DBUILD_opencv_cudaimgproc=OFF -DBUILD_opencv_cudalegacy=OFF -DBUILD_opencv_cudaobjdetect=OFF -DBUILD_opencv_cudaoptflow=OFF -DBUILD_opencv_cudastereo=OFF -DBUILD_opencv_cudawarping=OFF -DBUILD_opencv_cudacodec=OFF

cmake_disable_cuda = ["-DBUILD_opencv_cudaarithm=OFF","-DBUILD_opencv_cudabgsegm=OFF","-DBUILD_opencv_cudafeatures2d=OFF",
                      "-DBUILD_opencv_cudafilters=OFF","-DBUILD_opencv_cudaimgproc=OFF","-DBUILD_opencv_cudalegacy=OFF",
                      "-DBUILD_opencv_cudaobjdetect=OFF","-DBUILD_opencv_cudaoptflow=OFF","-DBUILD_opencv_cudastereo=OFF",
                      "-DBUILD_opencv_cudawarping=OFF","-DBUILD_opencv_cudacodec=OFF"]
  • Include non free modules.

    -DOPENCV_ENABLE_NONFREE=ON -DBUILD_opencv_rgbd=OFF

cmake_non_free = ["-DOPENCV_ENABLE_NONFREE=ON"]
  • Avoid having to build debug version in most cases

    -DBUILD_WITH_DEBUG_INFO=ON

cmake_debug_info = ["-DBUILD_WITH_DEBUG_INFO=ON"]

import subprocess
import time
cmake_generate_vs = cmake_base_vs + cmake_non_free + cmake_debug_info
start = time.time()
out_generate = subprocess.check_output(cmake_generate_vs)
end = time.time()
print_summary(out_generate,[0,1362,-949,len(out_generate)]);
print (f'VS solution file generation took: {(end-start):.2f} seconds')
with open('vs_cmake_out.txt', 'w') as f:
    f.write(out_generate.decode("utf-8"));
-- Selecting Windows SDK version 10.0.22621.0 to target Windows 10.0.22000.
-- ocv_init_download: OpenCV source tree is not fetched as git repository. 3rdparty resources will be downloaded from github.com by default.
-- Detected processor: AMD64
-- libjpeg-turbo: VERSION = 2.1.2, BUILD = opencv-4.6.0-libjpeg-turbo
-- Could NOT find OpenJPEG (minimal suitable version: 2.0, recommended version >= 2.3.1). OpenJPEG will be built from sources
-- OpenJPEG: VERSION = 2.4.0, BUILD = opencv-4.6.0-openjp2-2.4.0
-- OpenJPEG libraries will be built from sources: libopenjp2 (version "2.4.0")
-- found Intel IPP (ICV version): 2020.0.0 [2020.0.0 Gold]
-- at: D:/build/opencv/vs_base/3rdparty/ippicv/ippicv_win/icv
-- found Intel IPP Integration Wrappers sources: 2020.0.0
-- at: D:/build/opencv/vs_base/3rdparty/ippicv/ippicv_win/iw
-- CUDA detected: 11.7
-- CUDA: Using CUDA_ARCH_BIN=3.5;3.7;5.0;5.2;6.0;6.1;7.0;7.5;8.0;8.6
-- CUDA NVCC target flags: -gencode;arch=compute_35,code=sm_35;-gencode;arch=compute_37,code=sm_37;-gencode;arch=compute_50,code=sm_50;-gencode;arch=compute_52,code=sm_52;-gencode;arch=compute_60,code=sm_60;-gencode;arch=compute_61,code=sm_61;-gencode;arch=compute_70,code=sm_70;-gencode;arch=compute_75,code=sm_75;-gencode;arch=compute_80,code=sm_80;-gencode;arch=compute_86,code=sm_86;-D_FORCE_INLINES;-gencode;arch=compute_86,code=compute_86

...................................

--   NVIDIA CUDA:                   YES (ver 11.7, CUFFT CUBLAS NVCUVID FAST_MATH)
--     NVIDIA GPU arch:             35 37 50 52 60 61 70 75 80 86
--     NVIDIA PTX archs:            86
-- 
--   cuDNN:                         YES (ver 8.4.1)
-- 
--   OpenCL:                        YES (NVD3D11)
--     Include path:                D:/opencv/opencv-4.6.0/3rdparty/include/opencl/1.2
--     Link libraries:              Dynamic load
-- 
--   Python (for build):            C:/Users/b/mambaforge/python.exe
-- 
--   Java:                          
--     ant:                         NO
--     JNI:                         NO
--     Java wrappers:               NO
--     Java tests:                  NO
-- 
--   Install to:                    D:/build/opencv/vs_base/install
-- -----------------------------------------------------------------
-- 
-- Configuring done
-- Generating done
-- Build files have been written to: D:/build/opencv/vs_base

VS solution file generation took: 80.14 seconds

View full CMake output here

  1. If you want to make any configuration changes before building, then you can do so now through the CMake GUI.
  2. The OpenCV.sln solution file should now be in your PATH_TO_OPENCV_BUILD directory. To build OpenCV you have two options depending on you preference you can:
    • Build directly from the command line by simply entering the following (swaping Debug for Release to build a debug version)

      "C:\Program Files\CMake\bin\cmake.exe" --build %openCvBuild% --target install --config release

cmake_build_install = ["C:/Program Files/CMake/bin/cmake.exe", "--build", opencv_build_vs, "--target", "install", "--config", "release"]
start = time.time()
out_build = subprocess.check_output(cmake_build_install)
end = time.time()
print(out_build.decode("utf-8")) # only print success, need to trim
print (f'VS debug build took: {(end-start)/60:.2f} minutes')
Microsoft (R) Build Engine version 17.2.1+52cd2da31 for .NET Framework
Copyright (C) Microsoft Corporation. All rights reserved.

  adler32.c
  compress.c
  crc32.c
  deflate.c
  gzclose.c
  gzlib.c
  gzread.c
  gzwrite.c
  inflate.c
  infback.c
  inftrees.c
  inffast.c
  trees.c
  uncompr.c
  zutil.c
  zlib.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\zlib.lib
  half.cpp
  IexBaseExc.cpp
  IexThrowErrnoExc.cpp
  ImfAcesFile.cpp
  ImfAttribute.cpp
  ImfB44Compressor.cpp
  ImfBoxAttribute.cpp
  ImfCRgbaFile.cpp
  ImfChannelList.cpp
  ImfChannelListAttribute.cpp
  ImfChromaticities.cpp
  ImfChromaticitiesAttribute.cpp
  ImfCompositeDeepScanLine.cpp
  ImfCompressionAttribute.cpp
  ImfCompressor.cpp
  ImfConvert.cpp
  ImfDeepCompositing.cpp
  ImfDeepFrameBuffer.cpp
  ImfDeepImageStateAttribute.cpp
  ImfDeepScanLineInputFile.cpp
  ImfDeepScanLineInputPart.cpp
  ImfDeepScanLineOutputFile.cpp
  ImfDeepScanLineOutputPart.cpp
  ImfDeepTiledInputFile.cpp
  ImfDeepTiledInputPart.cpp
  ImfDeepTiledOutputFile.cpp
  ImfDeepTiledOutputPart.cpp
  ImfDoubleAttribute.cpp
  ImfDwaCompressor.cpp
  ImfEnvmap.cpp
  ImfEnvmapAttribute.cpp
  ImfFastHuf.cpp
  ImfFloatAttribute.cpp
  ImfFloatVectorAttribute.cpp
  ImfFrameBuffer.cpp
  ImfFramesPerSecond.cpp
  ImfGenericInputFile.cpp
  ImfGenericOutputFile.cpp
  ImfHeader.cpp
  ImfHuf.cpp
  ImfIO.cpp
  ImfInputFile.cpp
  ImfInputPart.cpp
  ImfInputPartData.cpp
  ImfIntAttribute.cpp
  ImfKeyCode.cpp
  ImfKeyCodeAttribute.cpp
  ImfLineOrderAttribute.cpp
  ImfLut.cpp
  ImfMatrixAttribute.cpp
  ImfMisc.cpp
  ImfMultiPartInputFile.cpp
  ImfMultiPartOutputFile.cpp
  ImfMultiView.cpp
  ImfOpaqueAttribute.cpp
  ImfOutputFile.cpp
  ImfOutputPart.cpp
  ImfOutputPartData.cpp
  ImfPartType.cpp
  ImfPizCompressor.cpp
  ImfPreviewImage.cpp
  ImfPreviewImageAttribute.cpp
  ImfPxr24Compressor.cpp
  ImfRational.cpp
  ImfRationalAttribute.cpp
  ImfRgbaFile.cpp
  ImfRgbaYca.cpp
  ImfRle.cpp
  ImfRleCompressor.cpp
  ImfScanLineInputFile.cpp
  ImfStandardAttributes.cpp
  ImfStdIO.cpp
  ImfStringAttribute.cpp
  ImfStringVectorAttribute.cpp
  ImfSystemSpecific.cpp
  ImfTestFile.cpp
  ImfThreading.cpp
  ImfTileDescriptionAttribute.cpp
  ImfTileOffsets.cpp
  ImfTiledInputFile.cpp
  ImfTiledInputPart.cpp
  ImfTiledMisc.cpp
  ImfTiledOutputFile.cpp
  ImfTiledOutputPart.cpp
  ImfTiledRgbaFile.cpp
  ImfTimeCode.cpp
  ImfTimeCodeAttribute.cpp
  ImfVecAttribute.cpp
  ImfVersion.cpp
  ImfWav.cpp
  ImfZip.cpp
  ImfZipCompressor.cpp
  dwaLookups.cpp
  IlmThread.cpp
  IlmThreadMutex.cpp
  IlmThreadMutexWin32.cpp
  IlmThreadPool.cpp
  IlmThreadSemaphore.cpp
  IlmThreadSemaphoreWin32.cpp
  IlmThreadWin32.cpp
  ImathBox.cpp
  ImathColorAlgo.cpp
  ImathFun.cpp
  ImathMatrixAlgo.cpp
  ImathRandom.cpp
  ImathShear.cpp
  ImathVec.cpp
  IlmImf.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\IlmImf.lib
  alloc.cpp
  assert.cpp
  check_cycles.cpp
  edge.cpp
  execution_engine.cpp
  graph.cpp
  memory_accessor.cpp
  memory_descriptor.cpp
  memory_descriptor_ref.cpp
  memory_descriptor_view.cpp
  metadata.cpp
  metatypes.cpp
  node.cpp
  communications.cpp
  search.cpp
  subgraphs.cpp
  topological_sort.cpp
  ade.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\ade.lib
  iw_core.c
  iw_image.c
  iw_image_color_convert_all.c
  iw_image_color_convert_rgbs.c
  iw_image_filter_bilateral.c
  iw_image_filter_box.c
  iw_image_filter_canny.c
  iw_image_filter_gaussian.c
  iw_image_filter_general.c
  iw_image_filter_laplacian.c
  iw_image_filter_morphology.c
  iw_image_filter_scharr.c
  iw_image_filter_sobel.c
  iw_image_op_copy.c
  iw_image_op_copy_channel.c
  iw_image_op_copy_make_border.c
  iw_image_op_copy_merge.c
  iw_image_op_copy_split.c
  iw_image_op_scale.c
  iw_image_op_set.c
  iw_image_op_set_channel.c
  iw_image_op_swap_channels.c
  iw_image_transform_mirror.c
  iw_image_transform_resize.c
  iw_image_transform_rotate.c
  iw_image_transform_warpaffine.c
  iw_own.c
  ippiw.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\ippiw.lib
  ittnotify_static.c
  jitprofiling.c
  ittnotify.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\ittnotify.lib
  jcapimin.c
  jcapistd.c
  jccoefct.c
  jccolor.c
  jcdctmgr.c
  jchuff.c
  jcicc.c
  jcinit.c
  jcmainct.c
  jcmarker.c
  jcmaster.c
  jcomapi.c
  jcparam.c
  jcphuff.c
  jcprepct.c
  jcsample.c
  jctrans.c
  jdapimin.c
  jdapistd.c
  jdatadst.c
  jdatasrc.c
  jdcoefct.c
  jdcolor.c
  jddctmgr.c
  jdhuff.c
  jdicc.c
  jdinput.c
  jdmainct.c
  jdmarker.c
  jdmaster.c
  jdmerge.c
  jdphuff.c
  jdpostct.c
  jdsample.c
  jdtrans.c
  jerror.c
  jfdctflt.c
  jfdctfst.c
  jfdctint.c
  jidctflt.c
  jidctfst.c
  jidctint.c
  jidctred.c
  jquant1.c
  jquant2.c
  jutils.c
  jmemmgr.c
  jmemnobs.c
  jaricom.c
  jcarith.c
  jdarith.c
  jsimd_none.c
  libjpeg-turbo.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\libjpeg-turbo.lib
  thread.c
  bio.c
  cio.c
  dwt.c
  event.c
  image.c
  invert.c
  j2k.c
  jp2.c
  mct.c
  mqc.c
  openjpeg.c
  opj_clock.c
  pi.c
  t1.c
  t2.c
  tcd.c
  tgt.c
  function_list.c
  opj_malloc.c
  sparse_array.c
  libopenjp2.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\libopenjp2.lib
  png.c
  pngerror.c
  pngget.c
  pngmem.c
  pngpread.c
  pngread.c
  pngrio.c
  pngrtran.c
  pngrutil.c
  pngset.c
  pngtrans.c
  pngwio.c
  pngwrite.c
  pngwtran.c
  pngwutil.c
  intel_init.c
  filter_sse2_intrinsics.c
  libpng.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\libpng.lib
  any_lite.cc
  arena.cc
  arenastring.cc
  extension_set.cc
  generated_message_util.cc
  implicit_weak_message.cc
  coded_stream.cc
  io_win32.cc
  strtod.cc
  zero_copy_stream.cc
  zero_copy_stream_impl.cc
  zero_copy_stream_impl_lite.cc
  map.cc
  message_lite.cc
  parse_context.cc
  repeated_field.cc
  repeated_ptr_field.cc
  bytestream.cc
  common.cc
  int128.cc
  status.cc
  stringpiece.cc
  stringprintf.cc
  structurally_valid.cc
  strutil.cc
  wire_format_lite.cc
  any.cc
  descriptor.cc
  descriptor.pb.cc
  descriptor_database.cc
  dynamic_message.cc
  extension_set_heavy.cc
  generated_message_reflection.cc
  tokenizer.cc
  map_field.cc
  message.cc
  reflection_ops.cc
  substitute.cc
  text_format.cc
  unknown_field_set.cc
  wire_format.cc
  libprotobuf.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\libprotobuf.lib
  tif_aux.c
  tif_close.c
  tif_codec.c
  tif_color.c
  tif_compress.c
  tif_dir.c
  tif_dirinfo.c
  tif_dirread.c
  tif_dirwrite.c
  tif_dumpmode.c
  tif_error.c
  tif_extension.c
  tif_fax3.c
  tif_fax3sm.c
  tif_flush.c
  tif_getimage.c
  tif_jbig.c
  tif_jpeg_12.c
  tif_jpeg.c
  tif_luv.c
  tif_lzma.c
  tif_lzw.c
  tif_next.c
  tif_ojpeg.c
  tif_open.c
  tif_packbits.c
  tif_pixarlog.c
  tif_predict.c
  tif_print.c
  tif_read.c
  tif_strip.c
  tif_swab.c
  tif_thunder.c
  tif_tile.c
  tif_version.c
  tif_warning.c
  tif_webp.c
  tif_write.c
  tif_zip.c
  tif_zstd.c
  tif_win32.c
  tif_stream.cxx
  libtiff.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\libtiff.lib
  alpha_dec.c
  buffer_dec.c
  frame_dec.c
  idec_dec.c
  io_dec.c
  quant_dec.c
  tree_dec.c
  vp8_dec.c
  vp8l_dec.c
  webp_dec.c
  anim_decode.c
  demux.c
  alpha_processing.c
  alpha_processing_mips_dsp_r2.c
  alpha_processing_neon.c
  alpha_processing_sse2.c
  alpha_processing_sse41.c
  cost.c
  cost_mips32.c
  cost_mips_dsp_r2.c
  cost_neon.c
  cost_sse2.c
  cpu.c
  dec.c
  dec_clip_tables.c
  dec_mips32.c
  dec_mips_dsp_r2.c
  dec_msa.c
  dec_neon.c
  dec_sse2.c
  dec_sse41.c
  enc.c
  enc_mips32.c
  enc_mips_dsp_r2.c
  enc_msa.c
  enc_neon.c
  enc_sse2.c
  enc_sse41.c
  filters.c
  filters_mips_dsp_r2.c
  filters_msa.c
  filters_neon.c
  filters_sse2.c
  lossless.c
  lossless_enc.c
  lossless_enc_mips32.c
  lossless_enc_mips_dsp_r2.c
  lossless_enc_msa.c
  lossless_enc_neon.c
  lossless_enc_sse2.c
  lossless_enc_sse41.c
  lossless_mips_dsp_r2.c
  lossless_msa.c
  lossless_neon.c
  lossless_sse2.c
  rescaler.c
  rescaler_mips32.c
  rescaler_mips_dsp_r2.c
  rescaler_msa.c
  rescaler_neon.c
  rescaler_sse2.c
  ssim.c
  ssim_sse2.c
  upsampling.c
  upsampling_mips_dsp_r2.c
  upsampling_msa.c
  upsampling_neon.c
  upsampling_sse2.c
  upsampling_sse41.c
  yuv.c
  yuv_mips32.c
  yuv_mips_dsp_r2.c
  yuv_neon.c
  yuv_sse2.c
  yuv_sse41.c
  alpha_enc.c
  analysis_enc.c
  backward_references_cost_enc.c
  backward_references_enc.c
  config_enc.c
  cost_enc.c
  filter_enc.c
  frame_enc.c
  histogram_enc.c
  iterator_enc.c
  near_lossless_enc.c
  picture_csp_enc.c
  picture_enc.c
  picture_psnr_enc.c
  picture_rescale_enc.c
  picture_tools_enc.c
  predictor_enc.c
  quant_enc.c
  syntax_enc.c
  token_enc.c
  tree_enc.c
  vp8l_enc.c
  webp_enc.c
  anim_encode.c
  muxedit.c
  muxinternal.c
  muxread.c
  bit_reader_utils.c
  bit_writer_utils.c
  color_cache_utils.c
  filters_utils.c
  huffman_encode_utils.c
  huffman_utils.c
  quant_levels_dec_utils.c
  quant_levels_utils.c
  random_utils.c
  rescaler_utils.c
  thread_utils.c
  utils.c
  libwebp.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\libwebp.lib
  decode.c
  quirc.c
  version_db.c
  quirc.vcxproj -> D:\build\opencv\vs_base\3rdparty\lib\Release\quirc.lib
  mathfuncs_core.avx.cpp
  corner.avx.cpp
  accum.avx.cpp
  layers_common.avx.cpp
  opencv_world_AVX.vcxproj -> D:\build\opencv\vs_base\modules\world\opencv_world_AVX.dir\Release\opencv_world_AVX.lib
  mathfuncs_core.avx2.cpp
  stat.avx2.cpp
  arithm.avx2.cpp
  convert.avx2.cpp
  convert_scale.avx2.cpp
  count_non_zero.avx2.cpp
  matmul.avx2.cpp
  mean.avx2.cpp
  merge.avx2.cpp
  split.avx2.cpp
  sum.avx2.cpp
  imgwarp.avx2.cpp
  resize.avx2.cpp
  accum.avx2.cpp
  bilateral_filter.avx2.cpp
  box_filter.avx2.cpp
  filter.avx2.cpp
  color_hsv.avx2.cpp
  color_rgb.avx2.cpp
  color_yuv.avx2.cpp
  median_blur.avx2.cpp
  morph.avx2.cpp
  smooth.avx2.cpp
  sumpixels.avx2.cpp
  fast.avx2.cpp
  sift.avx2.cpp
  undistort.avx2.cpp
  gfluidimgproc_func.avx2.cpp
  gfluidcore_func.avx2.cpp
  layers_common.avx2.cpp
  layers_common.avx2.cpp
  opencv_world_AVX2.vcxproj -> D:\build\opencv\vs_base\modules\world\opencv_world_AVX2.dir\Release\opencv_world_AVX2.lib
  matmul.avx512_skx.cpp
  sumpixels.avx512_skx.cpp
  sift.avx512_skx.cpp
  layers_common.avx512_skx.cpp
  layers_common.avx512_skx.cpp
  opencv_world_AVX512_SKX.vcxproj -> D:\build\opencv\vs_base\modules\world\opencv_world_AVX512_SKX.dir\Release\opencv_world_AVX512_SKX.lib
  arithm.sse4_1.cpp
  matmul.sse4_1.cpp
  imgwarp.sse4_1.cpp
  resize.sse4_1.cpp
  accum.sse4_1.cpp
  box_filter.sse4_1.cpp
  filter.sse4_1.cpp
  color_hsv.sse4_1.cpp
  color_rgb.sse4_1.cpp
  color_yuv.sse4_1.cpp
  median_blur.sse4_1.cpp
  morph.sse4_1.cpp
  smooth.sse4_1.cpp
  sift.sse4_1.cpp
  gfluidimgproc_func.sse4_1.cpp
  gfluidcore_func.sse4_1.cpp
  opencv_world_SSE4_1.vcxproj -> D:\build\opencv\vs_base\modules\world\opencv_world_SSE4_1.dir\Release\opencv_world_SSE4_1.lib
  stat.sse4_2.cpp
  opencv_world_SSE4_2.vcxproj -> D:\build\opencv\vs_base\modules\world\opencv_world_SSE4_2.dir\Release\opencv_world_SSE4_2.lib
  Processing OpenCL kernels (core)
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/core/src/cuda/release/cuda_compile_1_generated_gpu_mat.cu.obj
  gpu_mat.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  gpu_mat.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/core/src/cuda/release/cuda_compile_1_generated_gpu_mat_nd.cu.obj
  gpu_mat_nd.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  gpu_mat_nd.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_absdiff_mat.cu.obj
  absdiff_mat.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  absdiff_mat.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_absdiff_scalar.cu.obj
  absdiff_scalar.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  absdiff_scalar.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_add_mat.cu.obj
  add_mat.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  add_mat.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_add_scalar.cu.obj
  add_scalar.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  add_scalar.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_add_weighted.cu.obj
  add_weighted.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  add_weighted.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_bitwise_mat.cu.obj
  bitwise_mat.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  bitwise_mat.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_bitwise_scalar.cu.obj
  bitwise_scalar.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  bitwise_scalar.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_cmp_mat.cu.obj
  cmp_mat.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  cmp_mat.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_cmp_scalar.cu.obj
  cmp_scalar.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  cmp_scalar.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_copy_make_border.cu.obj
  copy_make_border.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  copy_make_border.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_countnonzero.cu.obj
  countnonzero.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  countnonzero.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_div_mat.cu.obj
  div_mat.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  div_mat.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_div_scalar.cu.obj
  div_scalar.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  div_scalar.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_in_range.cu.obj
  in_range.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  in_range.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_integral.cu.obj
  integral.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  integral.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_lut.cu.obj
  lut.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  lut.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_math.cu.obj
  math.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  math.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_minmax.cu.obj
  minmax.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  minmax.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_minmax_mat.cu.obj
  minmax_mat.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  minmax_mat.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_minmaxloc.cu.obj
  minmaxloc.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  minmaxloc.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_mul_mat.cu.obj
  mul_mat.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  mul_mat.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_mul_scalar.cu.obj
  mul_scalar.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  mul_scalar.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_mul_spectrums.cu.obj
  mul_spectrums.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  mul_spectrums.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_norm.cu.obj
  norm.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  norm.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_normalize.cu.obj
  normalize.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  normalize.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_polar_cart.cu.obj
  polar_cart.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  polar_cart.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_reduce.cu.obj
  reduce.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  reduce.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_split_merge.cu.obj
  split_merge.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  split_merge.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_sub_mat.cu.obj
  sub_mat.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  sub_mat.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_sub_scalar.cu.obj
  sub_scalar.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  sub_scalar.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_sum.cu.obj
  sum.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  sum.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_threshold.cu.obj
  threshold.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  threshold.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/release/cuda_compile_1_generated_transpose.cu.obj
  transpose.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  transpose.cu
  Processing OpenCL kernels (imgproc)
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.16sc1.cu.obj
  column_filter.16sc1.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.16sc1.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.16sc3.cu.obj
  column_filter.16sc3.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.16sc3.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.16sc4.cu.obj
  column_filter.16sc4.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.16sc4.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.16uc1.cu.obj
  column_filter.16uc1.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.16uc1.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.16uc3.cu.obj
  column_filter.16uc3.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.16uc3.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.16uc4.cu.obj
  column_filter.16uc4.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.16uc4.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.32fc1.cu.obj
  column_filter.32fc1.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.32fc1.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.32fc3.cu.obj
  column_filter.32fc3.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.32fc3.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.32fc4.cu.obj
  column_filter.32fc4.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.32fc4.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.32sc1.cu.obj
  column_filter.32sc1.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.32sc1.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.32sc3.cu.obj
  column_filter.32sc3.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.32sc3.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.32sc4.cu.obj
  column_filter.32sc4.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.32sc4.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.8uc1.cu.obj
  column_filter.8uc1.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.8uc1.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.8uc3.cu.obj
  column_filter.8uc3.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.8uc3.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_column_filter.8uc4.cu.obj
  column_filter.8uc4.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  column_filter.8uc4.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_filter2d.cu.obj
  filter2d.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  filter2d.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_median_filter.cu.obj
  median_filter.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  median_filter.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.16sc1.cu.obj
  row_filter.16sc1.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.16sc1.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.16sc3.cu.obj
  row_filter.16sc3.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.16sc3.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.16sc4.cu.obj
  row_filter.16sc4.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.16sc4.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.16uc1.cu.obj
  row_filter.16uc1.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.16uc1.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.16uc3.cu.obj
  row_filter.16uc3.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.16uc3.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.16uc4.cu.obj
  row_filter.16uc4.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.16uc4.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.32fc1.cu.obj
  row_filter.32fc1.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.32fc1.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.32fc3.cu.obj
  row_filter.32fc3.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.32fc3.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.32fc4.cu.obj
  row_filter.32fc4.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.32fc4.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.32sc1.cu.obj
  row_filter.32sc1.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.32sc1.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.32sc3.cu.obj
  row_filter.32sc3.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.32sc3.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.32sc4.cu.obj
  row_filter.32sc4.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.32sc4.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.8uc1.cu.obj
  row_filter.8uc1.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.8uc1.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.8uc3.cu.obj
  row_filter.8uc3.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.8uc3.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/release/cuda_compile_1_generated_row_filter.8uc4.cu.obj
  row_filter.8uc4.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  row_filter.8uc4.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_bilateral_filter.cu.obj
  bilateral_filter.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  bilateral_filter.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_blend.cu.obj
  blend.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  blend.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_build_point_list.cu.obj
  build_point_list.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  build_point_list.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_canny.cu.obj
  canny.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  canny.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_clahe.cu.obj
  clahe.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  clahe.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_color.cu.obj
  color.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  color.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_connectedcomponents.cu.obj
  connectedcomponents.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  connectedcomponents.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_corners.cu.obj
  corners.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (150): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
  (258): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
  (262): here
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  corners.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_debayer.cu.obj
  debayer.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
  (539): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
  (540): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
  (532): here
              instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
  (541): here
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  debayer.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_generalized_hough.cu.obj
  generalized_hough.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  generalized_hough.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_gftt.cu.obj
  gftt.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  gftt.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_hist.cu.obj
  hist.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  hist.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_hough_circles.cu.obj
  hough_circles.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  hough_circles.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_hough_lines.cu.obj
  hough_lines.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  hough_lines.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_hough_segments.cu.obj
  hough_segments.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  hough_segments.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_match_template.cu.obj
  match_template.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  match_template.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/release/cuda_compile_1_generated_mean_shift.cu.obj
  mean_shift.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  mean_shift.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudawarping/src/cuda/release/cuda_compile_1_generated_pyr_down.cu.obj
  pyr_down.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  pyr_down.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudawarping/src/cuda/release/cuda_compile_1_generated_pyr_up.cu.obj
  pyr_up.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  pyr_up.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudawarping/src/cuda/release/cuda_compile_1_generated_remap.cu.obj
  remap.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  remap.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudawarping/src/cuda/release/cuda_compile_1_generated_resize.cu.obj
  resize.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  resize.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudawarping/src/cuda/release/cuda_compile_1_generated_warp.cu.obj
  warp.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  warp.cu
  Processing OpenCL kernels (dnn)
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_activation_eltwise.cu.obj
  activation_eltwise.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  activation_eltwise.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_activations.cu.obj
  activations.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  activations.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_bias_activation.cu.obj
  bias_activation.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  bias_activation.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_bias_activation_eltwise.cu.obj
  bias_activation_eltwise.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  bias_activation_eltwise.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_bias_eltwise_activation.cu.obj
  bias_eltwise_activation.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  bias_eltwise_activation.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_concat.cu.obj
  concat.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  concat.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_crop_and_resize.cu.obj
  crop_and_resize.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  crop_and_resize.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_detection_output.cu.obj
  detection_output.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  detection_output.cu
D:\opencv\opencv-4.6.0\modules\dnn\src\cuda\detection_output.cu(707): warning C4805: '|': unsafe mix of type 'int' and type 'bool' in operation [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  D:\opencv\opencv-4.6.0\modules\dnn\src\cuda\detection_output.cu(711): note: see reference to function template instantiation 'void cv::dnn::cuda4dnn::kernels::decode_bboxes<__half>(const cv::dnn::cuda4dnn::csl::Stream &,cv::dnn::cuda4dnn::csl::Span<__half>,cv::dnn::cuda4dnn::csl::Span<const __half>,cv::dnn::cuda4dnn::csl::Span<const __half>,size_t,bool,size_t,bool,bool,bool,bool,bool,float,float)' being compiled
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_eltwise_activation.cu.obj
  eltwise_activation.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  eltwise_activation.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_eltwise_ops.cu.obj
  eltwise_ops.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  eltwise_ops.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_fill_copy.cu.obj
  fill_copy.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  fill_copy.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_fp_conversion.cu.obj
  fp_conversion.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  fp_conversion.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_grid_nms.cu.obj
  grid_nms.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  grid_nms.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_max_unpooling.cu.obj
  max_unpooling.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  max_unpooling.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_mvn.cu.obj
  mvn.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  mvn.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_normalize.cu.obj
  normalize.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  normalize.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_padding.cu.obj
  padding.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  padding.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_permute.cu.obj
  permute.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  permute.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_prior_box.cu.obj
  prior_box.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  prior_box.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_region.cu.obj
  region.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  region.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_resize.cu.obj
  resize.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  resize.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_roi_pooling.cu.obj
  roi_pooling.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  roi_pooling.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_scale_shift.cu.obj
  scale_shift.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  scale_shift.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_shortcut.cu.obj
  shortcut.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  shortcut.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/release/cuda_compile_1_generated_slice.cu.obj
  slice.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  slice.cu
  Processing OpenCL kernels (features2d)
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/hfs/src/cuda/release/cuda_compile_1_generated_gslic_seg_engine_gpu.cu.obj
  gslic_seg_engine_gpu.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  gslic_seg_engine_gpu.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/hfs/src/cuda/release/cuda_compile_1_generated_magnitude.cu.obj
  magnitude.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  magnitude.cu
  Processing OpenCL kernels (photo)
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/photo/src/cuda/release/cuda_compile_1_generated_nlm.cu.obj
  nlm.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  nlm.cu
  Processing OpenCL kernels (calib3d)
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudacodec/src/cuda/release/cuda_compile_1_generated_nv12_to_rgb.cu.obj
  nv12_to_rgb.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  nv12_to_rgb.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudacodec/src/cuda/release/cuda_compile_1_generated_rgb_to_yv12.cu.obj
  rgb_to_yv12.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  rgb_to_yv12.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafeatures2d/src/cuda/release/cuda_compile_1_generated_bf_knnmatch.cu.obj
  bf_knnmatch.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  bf_knnmatch.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafeatures2d/src/cuda/release/cuda_compile_1_generated_bf_match.cu.obj
  bf_match.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  bf_match.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafeatures2d/src/cuda/release/cuda_compile_1_generated_bf_radius_match.cu.obj
  bf_radius_match.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  bf_radius_match.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafeatures2d/src/cuda/release/cuda_compile_1_generated_fast.cu.obj
  fast.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  fast.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafeatures2d/src/cuda/release/cuda_compile_1_generated_orb.cu.obj
  orb.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  orb.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/release/cuda_compile_1_generated_disparity_bilateral_filter.cu.obj
  disparity_bilateral_filter.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  disparity_bilateral_filter.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/release/cuda_compile_1_generated_stereobm.cu.obj
  stereobm.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  stereobm.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/release/cuda_compile_1_generated_stereobp.cu.obj
  stereobp.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  stereobp.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/release/cuda_compile_1_generated_stereocsbp.cu.obj
  stereocsbp.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  stereocsbp.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/release/cuda_compile_1_generated_stereosgm.cu.obj
  stereosgm.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\calib3d\include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\calib3d\include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\calib3d\include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\calib3d\include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\calib3d\include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\calib3d\include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\calib3d\include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\calib3d\include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\calib3d\include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\calib3d\include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\features2d\include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\calib3d\include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  stereosgm.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/release/cuda_compile_1_generated_util.cu.obj
  util.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  util.cu
  Processing OpenCL kernels (objdetect)
  Processing OpenCL kernels (rgbd)
  Processing OpenCL kernels (video)
  Processing OpenCL kernels (xfeatures2d)
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/xfeatures2d/src/cuda/release/cuda_compile_1_generated_surf.cu.obj
  surf.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
  (225): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
  (227): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
  (579): here
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  surf.cu
  Processing OpenCL kernels (ximgproc)
  Processing OpenCL kernels (bioinspired)
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudabgsegm/src/cuda/release/cuda_compile_1_generated_mog.cu.obj
  mog.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  mog.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudabgsegm/src/cuda/release/cuda_compile_1_generated_mog2.cu.obj
  mog2.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  mog2.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_NCV.cu.obj
  NCV.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  NCV.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_NCVBroxOpticalFlow.cu.obj
  NCVBroxOpticalFlow.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
  (411): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
  (412): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
  (413): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
  (309): here
              instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
  (414): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
  (1069): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
  (1087): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  NCVBroxOpticalFlow.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_NCVHaarObjectDetection.cu.obj
  NCVHaarObjectDetection.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
  (322): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
  (302): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
  (315): here
              instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
  (645): here
              instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
              instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
  (678): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\objdetect\include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  NCVHaarObjectDetection.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_NCVPyramid.cu.obj
  NCVPyramid.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  NCVPyramid.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_NPP_staging.cu.obj
  NPP_staging.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
  (902): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
  (827): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
            detected during:
              instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
  (834): here
              instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
  (920): here
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  NPP_staging.cu
D:\opencv\opencv_contrib-4.6.0\modules\cudev\include\opencv2\cudev\grid\detail/integral.hpp(150): warning C4459: declaration of 'NUM_SCAN_THREADS' hides global declaration [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(90): note: see declaration of 'NUM_SCAN_THREADS'
  D:\opencv\opencv_contrib-4.6.0\modules\cudev\include\opencv2\cudev\grid\detail/integral.hpp(611): note: see reference to function template instantiation 'void cv::cudev::integral_detail::horizontal_pass<cv::cudev::GlobPtr<unsigned char>,unsigned int>(const SrcPtr &,const cv::cudev::GlobPtr<unsigned int> &,int,int,cudaStream_t)' being compiled
          with
          [
              SrcPtr=cv::cudev::GlobPtr<unsigned char>
          ]
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_bm.cu.obj
  bm.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  bm.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_bm_fast.cu.obj
  bm_fast.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  bm_fast.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_calib3d.cu.obj
  calib3d.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  calib3d.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_ccomponetns.cu.obj
  ccomponetns.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  ccomponetns.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_fgd.cu.obj
  fgd.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  fgd.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_gmg.cu.obj
  gmg.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  gmg.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/release/cuda_compile_1_generated_needle_map.cu.obj
  needle_map.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  needle_map.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaobjdetect/src/cuda/release/cuda_compile_1_generated_hog.cu.obj
  hog.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  hog.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaobjdetect/src/cuda/release/cuda_compile_1_generated_lbp.cu.obj
  lbp.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  lbp.cu
  Processing OpenCL kernels (optflow)
  Processing OpenCL kernels (stitching)
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/stitching/src/cuda/release/cuda_compile_1_generated_build_warp_maps.cu.obj
  build_warp_maps.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  build_warp_maps.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/stitching/src/cuda/release/cuda_compile_1_generated_multiband_blend.cu.obj
  multiband_blend.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  multiband_blend.cu
  Processing OpenCL kernels (tracking)
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaoptflow/src/cuda/release/cuda_compile_1_generated_farneback.cu.obj
  farneback.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  farneback.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaoptflow/src/cuda/release/cuda_compile_1_generated_nvidiaOpticalFlow.cu.obj
  nvidiaOpticalFlow.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  nvidiaOpticalFlow.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaoptflow/src/cuda/release/cuda_compile_1_generated_pyrlk.cu.obj
  pyrlk.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
  (1132): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
            detected during:
              instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
  (1137): here
              instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
  (1146): here
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  pyrlk.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaoptflow/src/cuda/release/cuda_compile_1_generated_tvl1flow.cu.obj
  tvl1flow.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]" [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
D:\opencv\opencv-4.6.0\modules\core\include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  tvl1flow.cu
  Processing OpenCL kernels (superres)
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/superres/src/cuda/release/cuda_compile_1_generated_btv_l1_gpu.cu.obj
  btv_l1_gpu.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  btv_l1_gpu.cu
  Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/videostab/src/cuda/release/cuda_compile_1_generated_global_motion.cu.obj
  global_motion.cu
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
CUSTOMBUILD : nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning). [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  global_motion.cu
  stub.cpp
  algorithm.cpp
  arithm.dispatch.cpp
  array.cpp
  async.cpp
  batch_distance.cpp
  bindings_utils.cpp
  buffer_area.cpp
  channels.cpp
  check.cpp
  command_line_parser.cpp
  conjugate_gradient.cpp
  convert.dispatch.cpp
  convert_c.cpp
  convert_scale.dispatch.cpp
  copy.cpp
  count_non_zero.dispatch.cpp
  cuda_gpu_mat.cpp
  cuda_gpu_mat_nd.cpp
  cuda_host_mem.cpp
  cuda_info.cpp
  cuda_stream.cpp
  datastructs.cpp
  directx.cpp
  downhill_simplex.cpp
  dxt.cpp
  gl_core_3_1.cpp
  glob.cpp
  hal_internal.cpp
  lapack.cpp
  lda.cpp
  logger.cpp
  lpsolver.cpp
  mathfuncs.cpp
  mathfuncs_core.dispatch.cpp
  matmul.dispatch.cpp
  matrix.cpp
  matrix_c.cpp
  matrix_decomp.cpp
  matrix_expressions.cpp
  matrix_iterator.cpp
  matrix_operations.cpp
  matrix_sparse.cpp
  matrix_transform.cpp
  matrix_wrap.cpp
  mean.dispatch.cpp
  merge.dispatch.cpp
  minmax.cpp
  norm.cpp
  ocl.cpp
  opencl_clblas.cpp
  opencl_clfft.cpp
  opencl_core.cpp
  opengl.cpp
  out.cpp
  ovx.cpp
  parallel_openmp.cpp
  parallel_tbb.cpp
  parallel_impl.cpp
  pca.cpp
  persistence.cpp
  persistence_base64_encoding.cpp
  persistence_json.cpp
  persistence_types.cpp
  persistence_xml.cpp
  persistence_yml.cpp
D:\opencv\opencv-4.6.0\modules\core\src\opengl.cpp(1676,58): warning C4459: declaration of 'clGetGLContextInfoKHR_pfn' hides global declaration [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
D:\opencv\opencv-4.6.0\modules\core\include\opencv2\core\opencl\runtime\autogenerated/opencl_gl.hpp(58,46): message : see declaration of 'clGetGLContextInfoKHR_pfn' (compiling source file D:\opencv\opencv-4.6.0\modules\core\src\opengl.cpp) [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  rand.cpp
  softfloat.cpp
  split.dispatch.cpp
  stat.dispatch.cpp
  stat_c.cpp
  stl.cpp
  sum.dispatch.cpp
  system.cpp
  trace.cpp
  types.cpp
  umatrix.cpp
  datafile.cpp
  filesystem.cpp
  logtagconfigparser.cpp
  logtagmanager.cpp
  samples.cpp
  va_intel.cpp
  opencl_kernels_core.cpp
  core.cpp
  element_operations.cpp
  reductions.cpp
  flann.cpp
  miniflann.cpp
  accum.cpp
  accum.dispatch.cpp
  approx.cpp
  bilateral_filter.dispatch.cpp
  box_filter.dispatch.cpp
  clahe.cpp
  color_hsv.dispatch.cpp
  color_lab.cpp
  color_rgb.dispatch.cpp
  color_yuv.dispatch.cpp
  colormap.cpp
  contours.cpp
  convhull.cpp
  corner.cpp
  cornersubpix.cpp
  demosaicing.cpp
  deriv.cpp
  distransform.cpp
  drawing.cpp
  emd.cpp
  featureselect.cpp
  filter.dispatch.cpp
  floodfill.cpp
  gabor.cpp
  geometry.cpp
  grabcut.cpp
  hershey_fonts.cpp
  hough.cpp
  imgwarp.cpp
  intelligent_scissors.cpp
  intersection.cpp
  linefit.cpp
  lsd.cpp
  matchcontours.cpp
  median_blur.dispatch.cpp
  min_enclosing_triangle.cpp
  moments.cpp
  morph.dispatch.cpp
  phasecorr.cpp
  rotcalipers.cpp
  samplers.cpp
  segmentation.cpp
  shapedescr.cpp
  smooth.dispatch.cpp
  spatialgradient.cpp
  subdivision2d.cpp
  sumpixels.dispatch.cpp
  templmatch.cpp
  thresh.cpp
  opencl_kernels_imgproc.cpp
  bimef.cpp
  intensity_transform.cpp
  ann_mlp.cpp
  boost.cpp
  data.cpp
  em.cpp
  gbt.cpp
  inner_functions.cpp
  kdtree.cpp
  knearest.cpp
  lr.cpp
  nbayes.cpp
  rtrees.cpp
  svm.cpp
  svmsgd.cpp
  testset.cpp
  tree.cpp
  histogramphaseunwrapping.cpp
  plot.cpp
  qualitybrisque.cpp
  qualitygmsd.cpp
  qualitymse.cpp
  qualityssim.cpp
  map.cpp
  mapaffine.cpp
  mapper.cpp
  mappergradaffine.cpp
  mappergradeuclid.cpp
  mappergradproj.cpp
  mappergradshift.cpp
  mappergradsimilar.cpp
  mapperpyramid.cpp
  mapprojec.cpp
  mapshift.cpp
  icp.cpp
  pose_3d.cpp
  ppf_helpers.cpp
  ppf_match_3d.cpp
  t_hash_int.cpp
  filtering.cpp
  bilateral_filter.cpp
  corners.cpp
  hough_circles.cpp
  hough_lines.cpp
  hough_segments.cpp
  match_template.cpp
  mean_shift.cpp
  mssegmentation.cpp
  remap.cpp
  warp.cpp
  opencv-caffe.pb.cc
  opencv-onnx.pb.cc
  attr_value.pb.cc
  function.pb.cc
  graph.pb.cc
  op_def.pb.cc
  tensor.pb.cc
  tensor_shape.pb.cc
  types.pb.cc
  versions.pb.cc
  caffe_importer.cpp
  caffe_io.cpp
  caffe_shrinker.cpp
  darknet_importer.cpp
  darknet_io.cpp
  debug_utils.cpp
  dnn.cpp
  dnn_params.cpp
  dnn_read.cpp
  dnn_utils.cpp
  graph_simplifier.cpp
  halide_scheduler.cpp
  ie_ngraph.cpp
  init.cpp
  quantization_utils.cpp
  layer.cpp
  layer_factory.cpp
  accum_layer.cpp
  arg_layer.cpp
  blank_layer.cpp
  concat_layer.cpp
  const_layer.cpp
  correlation_layer.cpp
  crop_and_resize_layer.cpp
  cumsum_layer.cpp
  detection_output_layer.cpp
  flatten_layer.cpp
  flow_warp_layer.cpp
  layers_common.cpp
  lrn_layer.cpp
  max_unpooling_layer.cpp
  mvn_layer.cpp
  normalize_bbox_layer.cpp
  not_implemented_layer.cpp
  padding_layer.cpp
  permute_layer.cpp
  prior_box_layer.cpp
  proposal_layer.cpp
  recurrent_layers.cpp
  region_layer.cpp
  reorg_layer.cpp
  reshape_layer.cpp
  resize_layer.cpp
  shuffle_channel_layer.cpp
  slice_layer.cpp
  split_layer.cpp
  legacy_backend.cpp
  model.cpp
  net.cpp
  net_impl.cpp
  net_impl_backend.cpp
  net_impl_fuse.cpp
  net_openvino.cpp
  net_quantization.cpp
  nms.cpp
  math_functions.cpp
  ocl4dnn_conv_spatial.cpp
  ocl4dnn_inner_product.cpp
  ocl4dnn_lrn.cpp
  ocl4dnn_pool.cpp
  ocl4dnn_softmax.cpp
  onnx_graph_simplifier.cpp
  onnx_importer.cpp
  op_cuda.cpp
  op_halide.cpp
  op_inf_engine.cpp
  op_timvx.cpp
  op_vkcom.cpp
  op_webnn.cpp
  registry.cpp
  tengine_graph_convolution.cpp
  tf_graph_simplifier.cpp
  tf_importer.cpp
  tf_io.cpp
  THDiskFile.cpp
  THFile.cpp
  THGeneral.cpp
  torch_importer.cpp
  avg_pool_spv.cpp
  concat_spv.cpp
  conv48_spv.cpp
  conv_spv.cpp
  dw_conv_spv.cpp
  lrn_spv.cpp
  max_pool_spv.cpp
  permute_spv.cpp
  prior_box_spv.cpp
  relu_spv.cpp
  softmax_spv.cpp
  buffer.cpp
  context.cpp
  internal.cpp
  op_base.cpp
  op_concat.cpp
  op_conv.cpp
  op_lrn.cpp
  op_permute.cpp
  op_pool.cpp
  op_prior_box.cpp
  op_relu.cpp
  op_softmax.cpp
  tensor.cpp
  vk_functions.cpp
  vk_loader.cpp
  opencl_kernels_dnn.cpp
  dnn_superres.cpp
  affine_feature.cpp
  agast.cpp
  agast_score.cpp
  akaze.cpp
  bagofwords.cpp
  blobdetector.cpp
  brisk.cpp
  dynamic.cpp
  evaluation.cpp
  fast_score.cpp
  feature2d.cpp
  kaze.cpp
  AKAZEFeatures.cpp
  KAZEFeatures.cpp
  fed.cpp
  nldiffusion_functions.cpp
  keypoint.cpp
  mser.cpp
  sift.dispatch.cpp
  opencl_kernels_features2d.cpp
  fuzzy_F0_math.cpp
  fuzzy_F1_math.cpp
  fuzzy_image.cpp
  hfs.cpp
  hfs_core.cpp
  magnitude.cpp
  gslic_engine.cpp
  loadsave.cpp
  grfmt_base.cpp
  grfmt_bmp.cpp
  grfmt_exr.cpp
  grfmt_gdal.cpp
  grfmt_gdcm.cpp
  grfmt_hdr.cpp
  grfmt_jpeg.cpp
  grfmt_jpeg2000.cpp
  grfmt_jpeg2000_openjpeg.cpp
  grfmt_pam.cpp
  grfmt_pfm.cpp
  grfmt_png.cpp
  grfmt_pxm.cpp
  grfmt_sunras.cpp
  grfmt_tiff.cpp
  grfmt_webp.cpp
  bitstrm.cpp
  rgbe.cpp
  exif.cpp
  LSDDetector.cpp
  binary_descriptor.cpp
  binary_descriptor_matcher.cpp
  calibrate.cpp
  contrast_preserve.cpp
  denoise_tvl1.cpp
  denoising.cpp
  denoising.cuda.cpp
  hdr_common.cpp
  inpaint.cpp
  npr.cpp
  seamless_cloning.cpp
  seamless_cloning_impl.cpp
  opencl_kernels_photo.cpp
  CmFile.cpp
  CmShow.cpp
  FilterTIG.cpp
  ValStructVec.cpp
  objectnessBING.cpp
  motionSaliency.cpp
  motionSaliencyBinWangApr2014.cpp
  objectness.cpp
  saliency.cpp
  staticSaliency.cpp
  staticSaliencyFineGrained.cpp
  staticSaliencySpectralResidual.cpp
  erfilter.cpp
  ocr_beamsearch_decoder.cpp
  ocr_hmm_decoder.cpp
  ocr_holistic.cpp
  ocr_tesseract.cpp
  text_detectorCNN.cpp
  text_detector_swt.cpp
  videoio_registry.cpp
  videoio_c.cpp
  cap.cpp
  cap_images.cpp
  cap_mjpeg_encoder.cpp
  cap_mjpeg_decoder.cpp
  backend_static.cpp
  container_avi.cpp
  cap_dshow.cpp
  cap_msmf.cpp
  cap_gstreamer.cpp
  binarizermgr.cpp
  decodermgr.cpp
  ssd_detector.cpp
  imgsource.cpp
  wechat_qrcode.cpp
  binarizer.cpp
  binarybitmap.cpp
  adaptive_threshold_mean_binarizer.cpp
  fast_window_binarizer.cpp
  global_histogram_binarizer.cpp
  simple_adaptive_binarizer.cpp
  bitarray.cpp
  bitmatrix.cpp
  bitsource.cpp
  bytematrix.cpp
  characterseteci.cpp
  decoder_result.cpp
  detector_result.cpp
  greyscale_luminance_source.cpp
  greyscale_rotated_luminance_source.cpp
  grid_sampler.cpp
  imagecut.cpp
  perspective_transform.cpp
  genericgf.cpp
  genericgfpoly.cpp
  reed_solomon_decoder.cpp
  str.cpp
  stringutils.cpp
  unicomblock.cpp
  errorhandler.cpp
  luminance_source.cpp
  bitmatrixparser.cpp
  datablock.cpp
  datamask.cpp
  decoded_bit_stream_parser.cpp
  decoder.cpp
  mode.cpp
  alignment_pattern.cpp
  alignment_pattern_finder.cpp
  detector.cpp
  finder_pattern.cpp
  finder_pattern_finder.cpp
  finder_pattern_info.cpp
  pattern_result.cpp
  error_correction_level.cpp
  format_information.cpp
  qrcode_reader.cpp
  version.cpp
  reader.cpp
  result.cpp
  resultpoint.cpp
  bm3d_image_denoising.cpp
  dct_image_denoising.cpp
  grayworld_white_balance.cpp
  learning_based_color_balance.cpp
  oilpainting.cpp
  simple_color_balance.cpp
  barcode.cpp
  abs_decoder.cpp
  ean13_decoder.cpp
  ean8_decoder.cpp
  upcean_decoder.cpp
  bardetect.cpp
  ap3p.cpp
  calibinit.cpp
  calibration.cpp
  calibration_handeye.cpp
  checkchessboard.cpp
  chessboard.cpp
  circlesgrid.cpp
  compat_ptsetreg.cpp
  dls.cpp
  epnp.cpp
  fisheye.cpp
  five-point.cpp
  fundam.cpp
  homography_decomp.cpp
  ippe.cpp
  levmarq.cpp
  p3p.cpp
  polynom_solver.cpp
  posit.cpp
  ptsetreg.cpp
  quadsubpix.cpp
  rho.cpp
  solvepnp.cpp
  sqpnp.cpp
  stereosgbm.cpp
  triangulate.cpp
  undistort.dispatch.cpp
  upnp.cpp
  degeneracy.cpp
  dls_solver.cpp
  essential_solver.cpp
  estimator.cpp
  fundamental_solver.cpp
  gamma_values.cpp
  homography_solver.cpp
  local_optimization.cpp
  pnp_solver.cpp
  quality.cpp
  ransac_solvers.cpp
  sampler.cpp
  termination.cpp
  opencl_kernels_calib3d.cpp
  cuvid_video_source.cpp
  ffmpeg_video_source.cpp
  frame_queue.cpp
  thread.cpp
  video_decoder.cpp
  video_parser.cpp
  video_reader.cpp
  video_source.cpp
  video_writer.cpp
  brute_force_matcher.cpp
  feature2d_async.cpp
  disparity_bilateral_filter.cpp
  stereobp.cpp
  stereocsbp.cpp
  stereosgm.cpp
  ar_hmdb.cpp
  ar_sports.cpp
  dataset.cpp
  fr_adience.cpp
  fr_lfw.cpp
  gr_chalearn.cpp
  gr_skig.cpp
  hpe_humaneva.cpp
  hpe_parse.cpp
  ir_affine.cpp
  ir_robot.cpp
  is_bsds.cpp
  is_weizmann.cpp
  msm_epfl.cpp
  msm_middlebury.cpp
  or_imagenet.cpp
  or_mnist.cpp
  or_pascal.cpp
  or_sun.cpp
  pd_caltech.cpp
  pd_inria.cpp
  slam_kitti.cpp
  slam_tumindoor.cpp
  sr_bsds.cpp
  sr_div2k.cpp
  sr_general100.cpp
  tinyxml2.cpp
  tr_chars.cpp
  tr_icdar.cpp
  tr_svt.cpp
  track_alov.cpp
  track_vot.cpp
  backend.cpp
  window.cpp
  roiSelector.cpp
  window_w32.cpp
  bound_min.cpp
  ccm.cpp
  charts.cpp
  checker_detector.cpp
  checker_model.cpp
  colorspace.cpp
  debug.cpp
  distance.cpp
  graph_cluster.cpp
  io.cpp
  linearize.cpp
  mcc.cpp
  operations.cpp
  wiener_filter.cpp
  cascadedetect.cpp
  cascadedetect_convert.cpp
  detection_based_tracker.cpp
  face_detect.cpp
  face_recognize.cpp
  qrcode.cpp
  qrcode_encoder.cpp
  opencl_kernels_objdetect.cpp
  rapid.cpp
  colored_kinfu.cpp
  colored_tsdf.cpp
  depth_cleaner.cpp
  depth_registration.cpp
  depth_to_3d.cpp
  dqb.cpp
  dynafu.cpp
  dynafu_tsdf.cpp
  fast_icp.cpp
  hash_tsdf.cpp
  kinfu.cpp
  kinfu_frame.cpp
  large_kinfu.cpp
  linemod.cpp
  nonrigid_icp.cpp
  normal.cpp
  odometry.cpp
  plane.cpp
  pose_graph.cpp
  tsdf.cpp
  tsdf_functions.cpp
  volume.cpp
  warpfield.cpp
  opencl_kernels_rgbd.cpp
  aff_trans.cpp
  emdL1.cpp
  haus_dis.cpp
  hist_cost.cpp
  sc_dis.cpp
  tps_trans.cpp
  graycodepattern.cpp
  sinusoidalpattern.cpp
  bgfg_KNN.cpp
  bgfg_gaussmix2.cpp
  camshift.cpp
  dis_flow.cpp
  ecc.cpp
  kalman.cpp
  lkpyramid.cpp
  optflowgf.cpp
  optical_flow_io.cpp
  tracker_feature.cpp
  tracker_feature_set.cpp
  tracker_mil_model.cpp
  tracker_mil_state.cpp
  tracker_model.cpp
  tracker_sampler.cpp
  tracker_sampler_algorithm.cpp
  tracker_state_estimator.cpp
  tracking_feature.cpp
  tracking_online_mil.cpp
  tracker_dasiamrpn.cpp
  tracker_goturn.cpp
  tracker_mil.cpp
  variational_refinement.cpp
  opencl_kernels_video.cpp
  affine_feature2d.cpp
  beblid.cpp
  brief.cpp
  daisy.cpp
  ellipticKeyPoint.cpp
  freak.cpp
  gms.cpp
  harris_lapace_detector.cpp
  latch.cpp
  Match.cpp
  Point.cpp
  PointPair.cpp
  lucid.cpp
  msd.cpp
  pct_signatures.cpp
  grayscale_bitmap.cpp
  pct_clusterizer.cpp
  pct_sampler.cpp
  pct_signatures_sqfd.cpp
  stardetector.cpp
  surf.cpp
  surf.cuda.cpp
  surf.ocl.cpp
  tbmr.cpp
  xfeatures2d_init.cpp
  opencl_kernels_xfeatures2d.cpp
  adaptive_manifold_filter_n.cpp
  anisodiff.cpp
  bilateral_texture_filter.cpp
  brightedges.cpp
  deriche_filter.cpp
  disparity_filters.cpp
  domain_transform.cpp
  dtfilter_cpu.cpp
  edge_drawing.cpp
  edgeaware_filters_common.cpp
  edgeboxes.cpp
  edgepreserving_filter.cpp
  estimated_covariance.cpp
  fast_hough_transform.cpp
  fast_line_detector.cpp
  fbs_filter.cpp
  fgs_filter.cpp
  fourier_descriptors.cpp
  graphsegmentation.cpp
  guided_filter.cpp
  joint_bilateral_filter.cpp
  l0_smooth.cpp
  lsc.cpp
  niblack_thresholding.cpp
  paillou_filter.cpp
  peilin.cpp
  quaternion.cpp
  radon_transform.cpp
  ridgedetectionfilter.cpp
  rolling_guidance_filter.cpp
  run_length_morphology.cpp
  scansegment.cpp
  seeds.cpp
  selectivesearchsegmentation.cpp
  sparse_match_interpolators.cpp
  structured_edge_detection.cpp
  thinning.cpp
  weighted_median_filter.cpp
  opencl_kernels_ximgproc.cpp
  feature_evaluator.cpp
  lbpfeatures.cpp
  waldboost.cpp
  wbdetector.cpp
  apriltag_quad_thresh.cpp
  aruco.cpp
  charuco.cpp
  dictionary.cpp
  zmaxheap.cpp
  bgfg_gaussmix.cpp
  bgfg_gmg.cpp
  bgfg_gsoc.cpp
  bgfg_subcnt.cpp
  synthetic_seq.cpp
  basicretinafilter.cpp
  imagelogpolprojection.cpp
  magnoretinafilter.cpp
  parvoretinafilter.cpp
  retina.cpp
  retina_ocl.cpp
  retinacolor.cpp
  retinafasttonemapping.cpp
  retinafilter.cpp
  transientareassegmentationmodule.cpp
  opencl_kernels_bioinspired.cpp
  ccalib.cpp
  multicalib.cpp
  omnidir.cpp
  randpattern.cpp
  mog.cpp
  mog2.cpp
  NCV.cpp
  bm.cpp
  bm_fast.cpp
  calib3d.cpp
  fgd.cpp
  gmg.cpp
  graphcuts.cpp
  image_pyramid.cpp
  interpolate_frames.cpp
  needle_map.cpp
  cascadeclassifier.cpp
  core_detect.cpp
  dpm_cascade.cpp
  dpm_cascade_detector.cpp
  dpm_convolution.cpp
  dpm_feature.cpp
  dpm_model.cpp
  dpm_nms.cpp
  bif.cpp
  eigen_faces.cpp
  face_alignment.cpp
  face_basic.cpp
  facemark.cpp
  facemarkAAM.cpp
  facemarkLBF.cpp
  facerec.cpp
  fisher_faces.cpp
  getlandmarks.cpp
  lbph_faces.cpp
  mace.cpp
  predict_collector.cpp
  regtree.cpp
  trainFacemark.cpp
  grunarg.cpp
  gorigin.cpp
  gmat.cpp
  garray.cpp
  gopaque.cpp
  gscalar.cpp
  gframe.cpp
  gkernel.cpp
  gbackend.cpp
  gproto.cpp
  gnode.cpp
  gcall.cpp
  gcomputation.cpp
  operators.cpp
  kernels_core.cpp
  kernels_imgproc.cpp
  kernels_video.cpp
  kernels_nnparsers.cpp
  kernels_streaming.cpp
  kernels_stereo.cpp
  render.cpp
  render_ocv.cpp
  ginfer.cpp
  media.cpp
  rmat.cpp
  gmodel.cpp
  gmodelbuilder.cpp
  gislandmodel.cpp
  gcompiler.cpp
  gcompiled.cpp
  gstreaming.cpp
  helpers.cpp
  dump_dot.cpp
  islands.cpp
  meta.cpp
  kernels.cpp
  exec.cpp
  transformations.cpp
  pattern_matching.cpp
  perform_substitution.cpp
  streaming.cpp
  intrin.cpp
  gexecutor.cpp
  gtbbexecutor.cpp
  gstreamingexecutor.cpp
  gasync.cpp
  gcpubackend.cpp
  gcpukernel.cpp
  gcpuimgproc.cpp
  gcpustereo.cpp
  gcpuvideo.cpp
  gcpucore.cpp
  gnnparsers.cpp
  gfluidbuffer.cpp
  gfluidbackend.cpp
  gfluidimgproc.cpp
  gfluidimgproc_func.dispatch.cpp
  gfluidcore.cpp
  gfluidcore_func.dispatch.cpp
  goak.cpp
  goakbackend.cpp
  goak_memory_adapters.cpp
  goclbackend.cpp
  goclkernel.cpp
  goclimgproc.cpp
  goclcore.cpp
  giebackend.cpp
  giewrapper.cpp
  gonnxbackend.cpp
  grenderocv.cpp
  ft_render.cpp
  gplaidmlcore.cpp
  gplaidmlbackend.cpp
  gmetabackend.cpp
  gcompoundbackend.cpp
  gcompoundkernel.cpp
  s11n.cpp
  serialization.cpp
  gstreamingbackend.cpp
  bindings_ie.cpp
  gpythonbackend.cpp
  source.cpp
  source_priv.cpp
  file_data_provider.cpp
  cfg_params.cpp
  cfg_params_parser.cpp
  data_provider_interface_exception.cpp
  base_frame_adapter.cpp
  cpu_frame_adapter.cpp
  dx11_frame_adapter.cpp
  surface.cpp
  surface_pool.cpp
  shared_lock.cpp
  accel_policy_cpu.cpp
  accel_policy_dx11.cpp
  accel_policy_va_api.cpp
  dx11_alloc_resource.cpp
  engine_session.cpp
  processing_engine_base.cpp
  decode_engine_legacy.cpp
  decode_session.cpp
  transcode_engine_legacy.cpp
  transcode_session.cpp
  preproc_engine.cpp
  preproc_session.cpp
  preproc_dispatcher.cpp
  preproc_engine_interface.cpp
  async_mfp_demux_data_provider.cpp
  data_provider_dispatcher.cpp
  cfg_param_device_selector.cpp
  device_selector_interface.cpp
  gstreamer_pipeline_facade.cpp
  gstreamerpipeline.cpp
  gstreamersource.cpp
  gstreamer_buffer_utils.cpp
  gstreamer_media_adapter.cpp
  gstreamerenv.cpp
  itt.cpp
  deepflow.cpp
  interfaces.cpp
  motempl.cpp
  pcaflow.cpp
  geo_interpolation.cpp
  rlof_localflow.cpp
  rlofflow.cpp
  simpleflow.cpp
  sparse_matching_gpc.cpp
  sparsetodenseflow.cpp
  opencl_kernels_optflow.cpp
  autocalib.cpp
  blenders.cpp
  camera.cpp
  exposure_compensate.cpp
  motion_estimators.cpp
  seam_finders.cpp
  stitcher.cpp
  timelapsers.cpp
  warpers.cpp
  warpers_cuda.cpp
  opencl_kernels_stitching.cpp
  augmented_unscented_kalman.cpp
  feature.cpp
  featureColorName.cpp
  gtrUtils.cpp
  kuhn_munkres.cpp
  mosseTracker.cpp
  multiTracker.cpp
  multiTracker_alt.cpp
  onlineBoosting.cpp
  tldDataset.cpp
  tldDetector.cpp
  tldEnsembleClassifier.cpp
  tldModel.cpp
  tldTracker.cpp
  tldUtils.cpp
  trackerBoosting.cpp
  trackerBoostingModel.cpp
  trackerCSRT.cpp
  trackerCSRTScaleEstimation.cpp
  trackerCSRTSegmentation.cpp
  trackerCSRTUtils.cpp
  trackerFeature.cpp
  trackerFeatureSet.cpp
  trackerKCF.cpp
  trackerMIL_legacy.cpp
  trackerMedianFlow.cpp
  trackerSampler.cpp
  trackerSamplerAlgorithm.cpp
  trackerStateEstimator.cpp
  tracking_by_matching.cpp
  tracking_utils.cpp
  unscented_kalman.cpp
  opencl_kernels_tracking.cpp
  brox.cpp
  farneback.cpp
  nvidiaOpticalFlow.cpp
  pyrlk.cpp
  descriptor.cpp
  quasi_dense_stereo.cpp
  stereo_binary_bm.cpp
  stereo_binary_sgbm.cpp
  btv_l1.cpp
  btv_l1_cuda.cpp
  input_array_utility.cpp
  super_resolution.cpp
  opencl_kernels_superres.cpp
  deblurring.cpp
  fast_marching.cpp
  global_motion.cpp
  log.cpp
  motion_stabilizing.cpp
  outlier_rejection.cpp
  stabilizer.cpp
  wobble_suppression.cpp
  world_init.cpp
  alloc.cpp
  arithm.cpp
  kmeans.cpp
  lut.cpp
  parallel.cpp
  parallel.cpp
  tables.cpp
  arithm.cpp
  lut.cpp
  blend.cpp
  canny.cpp
  color.cpp
  connectedcomponents.cpp
  generalized_hough.cpp
  histogram.cpp
  main.cpp
  pyramids.cpp
  resize.cpp
  tables.cpp
  utils.cpp
  blend.cpp
  canny.cpp
  color.cpp
  connectedcomponents.cpp
  generalized_hough.cpp
  gftt.cpp
  histogram.cpp
  pyramids.cpp
  resize.cpp
  batch_norm_layer.cpp
  convolution_layer.cpp
  elementwise_layers.cpp
  eltwise_layer.cpp
  fully_connected_layer.cpp
  pooling_layer.cpp
  reduce_layer.cpp
  scale_layer.cpp
  softmax_layer.cpp
  batch_norm_layer.cpp
  convolution_layer.cpp
  elementwise_layers.cpp
  eltwise_layer.cpp
  fully_connected_layer.cpp
  pooling_layer.cpp
  reduce_layer.cpp
  scale_layer.cpp
  softmax_layer.cpp
  common.cpp
  draw.cpp
  fast.cpp
  gftt.cpp
  main.cpp
  matchers.cpp
  orb.cpp
  merge.cpp
  slic.cpp
  utils.cpp
  draw.cpp
  align.cpp
  merge.cpp
  tonemap.cpp
  backend_plugin.cpp
  align.cpp
  super_scale.cpp
  hybrid_binarizer.cpp
  kmeans.cpp
  inpainting.cpp
  tonemap.cpp
  hybrid_binarizer.cpp
  super_scale.cpp
  utils.cpp
  main.cpp
  stereobm.cpp
  utils.cpp
  fast.cpp
  orb.cpp
  stereobm.cpp
  util.cpp
  util.cpp
  color.cpp
  common.cpp
  utils.cpp
  hog.cpp
  main.cpp
  histogram.cpp
  utils.cpp
  tracker.cpp
  boostdesc.cpp
  fast.cpp
  logos.cpp
  Logos.cpp
  vgg.cpp
  slic.cpp
  hog.cpp
  utils.cpp
  tvl1flow.cpp
  matchers.cpp
  util.cpp
  tracker.cpp
  tvl1flow.cpp
  frame_source.cpp
  optical_flow.cpp
  frame_source.cpp
  inpainting.cpp
  optical_flow.cpp
     Creating library D:/build/opencv/vs_base/lib/Release/opencv_world460.lib and object D:/build/opencv/vs_base/lib/Release/opencv_world460.exp
LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library [D:\build\opencv\vs_base\modules\world\opencv_world.vcxproj]
  opencv_world.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_world460.dll
  aruco_dict_utils.cpp
  example_aruco_aruco_dict_utils.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_aruco_dict_utils.exe
  calibrate_camera.cpp
  example_aruco_calibrate_camera.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_calibrate_camera.exe
  calibrate_camera_charuco.cpp
  example_aruco_calibrate_camera_charuco.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_calibrate_camera_charuco.exe
  create_board.cpp
  example_aruco_create_board.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_create_board.exe
  create_board_charuco.cpp
  example_aruco_create_board_charuco.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_create_board_charuco.exe
  create_diamond.cpp
  example_aruco_create_diamond.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_create_diamond.exe
  create_marker.cpp
  example_aruco_create_marker.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_create_marker.exe
  detect_board.cpp
  example_aruco_detect_board.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_detect_board.exe
  detect_board_charuco.cpp
  example_aruco_detect_board_charuco.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_detect_board_charuco.exe
  detect_diamonds.cpp
  example_aruco_detect_diamonds.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_detect_diamonds.exe
  detect_markers.cpp
  example_aruco_detect_markers.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_detect_markers.exe
  tutorial_charuco_create_detect.cpp
  example_aruco_tutorial_charuco_create_detect.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_aruco_tutorial_charuco_create_detect.exe
  barcode.cpp
  example_barcode_barcode.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_barcode_barcode.exe
  bgfg.cpp
  example_bgsegm_bgfg.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_bgsegm_bgfg.exe
  OpenEXRimages_HDR_Retina_toneMapping.cpp
  example_bioinspired_OpenEXRimages_HDR_Retina_toneMapping.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_bioinspired_OpenEXRimages_HDR_Retina_toneMapping.exe
  retinaDemo.cpp
  example_bioinspired_retinaDemo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_bioinspired_retinaDemo.exe
  multi_cameras_calibration.cpp
  example_ccalib_multi_cameras_calibration.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ccalib_multi_cameras_calibration.exe
  omni_calibration.cpp
  example_ccalib_omni_calibration.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ccalib_omni_calibration.exe
  omni_stereo_calibration.cpp
  example_ccalib_omni_stereo_calibration.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ccalib_omni_stereo_calibration.exe
  random_pattern_calibration.cpp
  example_ccalib_random_pattern_calibration.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ccalib_random_pattern_calibration.exe
  random_pattern_generator.cpp
  example_ccalib_random_pattern_generator.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ccalib_random_pattern_generator.exe
  average_hash.cpp
  block_mean_hash.cpp
  color_moment_hash.cpp
  img_hash_base.cpp
  marr_hildreth_hash.cpp
  phash.cpp
  radial_variance_hash.cpp
  opencv_img_hash_main.cpp
     Creating library D:/build/opencv/vs_base/lib/Release/opencv_img_hash460.lib and object D:/build/opencv/vs_base/lib/Release/opencv_img_hash460.exp
  opencv_img_hash.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_img_hash460.dll
  3calibration.cpp
  example_cpp_3calibration.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_3calibration.exe
  application_trace.cpp
  example_cpp_application_trace.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_application_trace.exe
  asift.cpp
  example_cpp_asift.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_asift.exe
  audio_spectrogram.cpp
  example_cpp_audio_spectrogram.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_audio_spectrogram.exe
  bgfg_segm.cpp
  example_cpp_bgfg_segm.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_bgfg_segm.exe
  calibration.cpp
  example_cpp_calibration.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_calibration.exe
  camshiftdemo.cpp
  example_cpp_camshiftdemo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_camshiftdemo.exe
  cloning_demo.cpp
  example_cpp_cloning_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_cloning_demo.exe
  cloning_gui.cpp
  example_cpp_cloning_gui.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_cloning_gui.exe
  connected_components.cpp
  example_cpp_connected_components.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_connected_components.exe
  contours2.cpp
  example_cpp_contours2.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_contours2.exe
  convexhull.cpp
  example_cpp_convexhull.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_convexhull.exe
  cout_mat.cpp
  example_cpp_cout_mat.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_cout_mat.exe
  create_mask.cpp
  example_cpp_create_mask.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_create_mask.exe
  dbt_face_detection.cpp
  example_cpp_dbt_face_detection.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_dbt_face_detection.exe
  delaunay2.cpp
  example_cpp_delaunay2.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_delaunay2.exe
  demhist.cpp
  example_cpp_demhist.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_demhist.exe
  detect_blob.cpp
  example_cpp_detect_blob.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_detect_blob.exe
  detect_mser.cpp
  example_cpp_detect_mser.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_detect_mser.exe
  dft.cpp
  example_cpp_dft.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_dft.exe
  digits_lenet.cpp
  example_cpp_digits_lenet.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_digits_lenet.exe
  digits_svm.cpp
  example_cpp_digits_svm.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_digits_svm.exe
  dis_opticalflow.cpp
  example_cpp_dis_opticalflow.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_dis_opticalflow.exe
  distrans.cpp
  example_cpp_distrans.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_distrans.exe
  drawing.cpp
  example_cpp_drawing.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_drawing.exe
  edge.cpp
  example_cpp_edge.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_edge.exe
  ela.cpp
  example_cpp_ela.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_ela.exe
  em.cpp
  example_cpp_em.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_em.exe
  epipolar_lines.cpp
  example_cpp_epipolar_lines.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_epipolar_lines.exe
  essential_mat_reconstr.cpp
  example_cpp_essential_mat_reconstr.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_essential_mat_reconstr.exe
  example.cpp
  example_cpp_example.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_example.exe
  facedetect.cpp
  example_cpp_facedetect.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_facedetect.exe
  facial_features.cpp
  example_cpp_facial_features.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_facial_features.exe
  falsecolor.cpp
  example_cpp_falsecolor.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_falsecolor.exe
  fback.cpp
  example_cpp_fback.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_fback.exe
  ffilldemo.cpp
  example_cpp_ffilldemo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_ffilldemo.exe
  filestorage.cpp
  example_cpp_filestorage.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_filestorage.exe
  fitellipse.cpp
  example_cpp_fitellipse.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_fitellipse.exe
  flann_search_dataset.cpp
  example_cpp_flann_search_dataset.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_flann_search_dataset.exe
  grabcut.cpp
  example_cpp_grabcut.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_grabcut.exe
  image_alignment.cpp
  example_cpp_image_alignment.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_image_alignment.exe
  imagelist_creator.cpp
  example_cpp_imagelist_creator.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_imagelist_creator.exe
  imagelist_reader.cpp
  example_cpp_imagelist_reader.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_imagelist_reader.exe
  inpaint.cpp
  example_cpp_inpaint.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_inpaint.exe
  intelligent_scissors.cpp
  example_cpp_intelligent_scissors.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_intelligent_scissors.exe
  intersectExample.cpp
  example_cpp_intersectExample.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_intersectExample.exe
  kalman.cpp
  example_cpp_kalman.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_kalman.exe
  kmeans.cpp
  example_cpp_kmeans.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_kmeans.exe
  laplace.cpp
  example_cpp_laplace.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_laplace.exe
  letter_recog.cpp
  example_cpp_letter_recog.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_letter_recog.exe
  lkdemo.cpp
  example_cpp_lkdemo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_lkdemo.exe
  logistic_regression.cpp
  example_cpp_logistic_regression.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_logistic_regression.exe
  lsd_lines.cpp
  example_cpp_lsd_lines.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_lsd_lines.exe
  mask_tmpl.cpp
  example_cpp_mask_tmpl.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_mask_tmpl.exe
  matchmethod_orb_akaze_brisk.cpp
  example_cpp_matchmethod_orb_akaze_brisk.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_matchmethod_orb_akaze_brisk.exe
  minarea.cpp
  example_cpp_minarea.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_minarea.exe
  morphology2.cpp
  example_cpp_morphology2.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_morphology2.exe
  neural_network.cpp
  example_cpp_neural_network.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_neural_network.exe
  npr_demo.cpp
  example_cpp_npr_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_npr_demo.exe
  opencv_version.cpp
  example_cpp_opencv_version.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_opencv_version.exe
  pca.cpp
  example_cpp_pca.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_pca.exe
  peopledetect.cpp
  example_cpp_peopledetect.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_peopledetect.exe
  phase_corr.cpp
  example_cpp_phase_corr.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_phase_corr.exe
  points_classifier.cpp
  example_cpp_points_classifier.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_points_classifier.exe
  polar_transforms.cpp
  example_cpp_polar_transforms.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_polar_transforms.exe
  qrcode.cpp
  example_cpp_qrcode.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_qrcode.exe
  segment_objects.cpp
  example_cpp_segment_objects.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_segment_objects.exe
  select3dobj.cpp
  example_cpp_select3dobj.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_select3dobj.exe
  simd_basic.cpp
  example_cpp_simd_basic.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_simd_basic.exe
  smiledetect.cpp
  example_cpp_smiledetect.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_smiledetect.exe
  squares.cpp
  example_cpp_squares.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_squares.exe
  stereo_calib.cpp
  example_cpp_stereo_calib.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_stereo_calib.exe
  stereo_match.cpp
  example_cpp_stereo_match.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_stereo_match.exe
  stitching.cpp
  example_cpp_stitching.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_stitching.exe
  stitching_detailed.cpp
  example_cpp_stitching_detailed.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_stitching_detailed.exe
  text_skewness_correction.cpp
  example_cpp_text_skewness_correction.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_text_skewness_correction.exe
  train_HOG.cpp
  example_cpp_train_HOG.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_train_HOG.exe
  train_svmsgd.cpp
  example_cpp_train_svmsgd.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_train_svmsgd.exe
  travelsalesman.cpp
  example_cpp_travelsalesman.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_travelsalesman.exe
  tree_engine.cpp
  example_cpp_tree_engine.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_tree_engine.exe
  videocapture_audio.cpp
  example_cpp_videocapture_audio.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videocapture_audio.exe
  videocapture_audio_combination.cpp
  example_cpp_videocapture_audio_combination.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videocapture_audio_combination.exe
  videocapture_basic.cpp
  example_cpp_videocapture_basic.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videocapture_basic.exe
  videocapture_camera.cpp
  example_cpp_videocapture_camera.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videocapture_camera.exe
  videocapture_gphoto2_autofocus.cpp
  example_cpp_videocapture_gphoto2_autofocus.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videocapture_gphoto2_autofocus.exe
  videocapture_gstreamer_pipeline.cpp
  example_cpp_videocapture_gstreamer_pipeline.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videocapture_gstreamer_pipeline.exe
  videocapture_image_sequence.cpp
  example_cpp_videocapture_image_sequence.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videocapture_image_sequence.exe
  videocapture_microphone.cpp
  example_cpp_videocapture_microphone.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videocapture_microphone.exe
  videocapture_openni.cpp
  example_cpp_videocapture_openni.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videocapture_openni.exe
  videocapture_realsense.cpp
  example_cpp_videocapture_realsense.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videocapture_realsense.exe
  videocapture_starter.cpp
  example_cpp_videocapture_starter.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videocapture_starter.exe
  videowriter_basic.cpp
  example_cpp_videowriter_basic.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_videowriter_basic.exe
  warpPerspective_demo.cpp
  example_cpp_warpPerspective_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_warpPerspective_demo.exe
  watershed.cpp
  example_cpp_watershed.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cpp_watershed.exe
  connected_components.cpp
  example_cudaimgproc_connected_components.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cudaimgproc_connected_components.exe
  nvidia_optical_flow.cpp
  example_cudaoptflow_nvidia_optical_flow.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cudaoptflow_nvidia_optical_flow.exe
  optical_flow.cpp
  example_cudaoptflow_optical_flow.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_cudaoptflow_optical_flow.exe
  ar_hmdb.cpp
  example_datasets_ar_hmdb.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_ar_hmdb.exe
  ar_hmdb_benchmark.cpp
  example_datasets_ar_hmdb_benchmark.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_ar_hmdb_benchmark.exe
  ar_sports.cpp
  example_datasets_ar_sports.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_ar_sports.exe
  fr_adience.cpp
  example_datasets_fr_adience.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_fr_adience.exe
  fr_lfw.cpp
  example_datasets_fr_lfw.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_fr_lfw.exe
  fr_lfw_benchmark.cpp
  example_datasets_fr_lfw_benchmark.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_fr_lfw_benchmark.exe
  gr_chalearn.cpp
  example_datasets_gr_chalearn.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_gr_chalearn.exe
  gr_skig.cpp
  example_datasets_gr_skig.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_gr_skig.exe
  hpe_humaneva.cpp
  example_datasets_hpe_humaneva.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_hpe_humaneva.exe
  hpe_parse.cpp
  example_datasets_hpe_parse.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_hpe_parse.exe
  ir_affine.cpp
  example_datasets_ir_affine.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_ir_affine.exe
  ir_robot.cpp
  example_datasets_ir_robot.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_ir_robot.exe
  is_bsds.cpp
  example_datasets_is_bsds.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_is_bsds.exe
  is_weizmann.cpp
  example_datasets_is_weizmann.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_is_weizmann.exe
  msm_epfl.cpp
  example_datasets_msm_epfl.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_msm_epfl.exe
  msm_middlebury.cpp
  example_datasets_msm_middlebury.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_msm_middlebury.exe
  or_imagenet.cpp
  example_datasets_or_imagenet.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_or_imagenet.exe
  or_mnist.cpp
  example_datasets_or_mnist.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_or_mnist.exe
  or_pascal.cpp
  example_datasets_or_pascal.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_or_pascal.exe
  or_sun.cpp
  example_datasets_or_sun.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_or_sun.exe
  pd_caltech.cpp
  example_datasets_pd_caltech.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_pd_caltech.exe
  pd_inria.cpp
  example_datasets_pd_inria.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_pd_inria.exe
  slam_kitti.cpp
  example_datasets_slam_kitti.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_slam_kitti.exe
  slam_tumindoor.cpp
  example_datasets_slam_tumindoor.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_slam_tumindoor.exe
  sr_bsds.cpp
  example_datasets_sr_bsds.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_sr_bsds.exe
  sr_div2k.cpp
  example_datasets_sr_div2k.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_sr_div2k.exe
  sr_general100.cpp
  example_datasets_sr_general100.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_sr_general100.exe
  tr_chars.cpp
  example_datasets_tr_chars.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_tr_chars.exe
  tr_chars_benchmark.cpp
  example_datasets_tr_chars_benchmark.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_tr_chars_benchmark.exe
  tr_icdar.cpp
  example_datasets_tr_icdar.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_tr_icdar.exe
  tr_icdar_benchmark.cpp
  example_datasets_tr_icdar_benchmark.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_tr_icdar_benchmark.exe
  tr_svt.cpp
  example_datasets_tr_svt.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_tr_svt.exe
  tr_svt_benchmark.cpp
  example_datasets_tr_svt_benchmark.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_tr_svt_benchmark.exe
  track_vot.cpp
  example_datasets_track_vot.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_datasets_track_vot.exe
  d3d10_interop.cpp
  example_directx_d3d10_interop.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_directx_d3d10_interop.exe
  d3d11_interop.cpp
  example_directx_d3d11_interop.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_directx_d3d11_interop.exe
  d3d9_interop.cpp
  example_directx_d3d9_interop.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_directx_d3d9_interop.exe
  d3d9ex_interop.cpp
  example_directx_d3d9ex_interop.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_directx_d3d9ex_interop.exe
  classification.cpp
  example_dnn_classification.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_classification.exe
  colorization.cpp
  example_dnn_colorization.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_colorization.exe
  dasiamrpn_tracker.cpp
  example_dnn_dasiamrpn_tracker.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_dasiamrpn_tracker.exe
  face_detect.cpp
  example_dnn_face_detect.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_face_detect.exe
  human_parsing.cpp
  example_dnn_human_parsing.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_human_parsing.exe
  image_classification.cpp
  example_dnn_objdetect_image_classification.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_objdetect_image_classification.exe
  obj_detect.cpp
  example_dnn_objdetect_obj_detect.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_objdetect_obj_detect.exe
  object_detection.cpp
  example_dnn_object_detection.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_object_detection.exe
  openpose.cpp
  example_dnn_openpose.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_openpose.exe
  person_reid.cpp
  example_dnn_person_reid.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_person_reid.exe
  scene_text_detection.cpp
  example_dnn_scene_text_detection.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_scene_text_detection.exe
  scene_text_recognition.cpp
  example_dnn_scene_text_recognition.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_scene_text_recognition.exe
  scene_text_spotting.cpp
  example_dnn_scene_text_spotting.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_scene_text_spotting.exe
  segmentation.cpp
  example_dnn_segmentation.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_segmentation.exe
  speech_recognition.cpp
  example_dnn_speech_recognition.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_speech_recognition.exe
  dnn_superres.cpp
  example_dnn_superres_dnn_superres.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_superres_dnn_superres.exe
  dnn_superres_benchmark_quality.cpp
  example_dnn_superres_dnn_superres_benchmark_quality.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_superres_dnn_superres_benchmark_quality.exe
  dnn_superres_benchmark_time.cpp
  example_dnn_superres_dnn_superres_benchmark_time.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_superres_dnn_superres_benchmark_time.exe
  dnn_superres_multioutput.cpp
  example_dnn_superres_dnn_superres_multioutput.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_superres_dnn_superres_multioutput.exe
  dnn_superres_video.cpp
  example_dnn_superres_dnn_superres_video.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_superres_dnn_superres_video.exe
  text_detection.cpp
  example_dnn_text_detection.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dnn_text_detection.exe
  cascade_detect_camera.cpp
  example_dpm_cascade_detect_camera.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dpm_cascade_detect_camera.exe
  cascade_detect_sequence.cpp
  example_dpm_cascade_detect_sequence.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_dpm_cascade_detect_sequence.exe
  facemark_demo_aam.cpp
  example_face_facemark_demo_aam.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_facemark_demo_aam.exe
  facemark_demo_lbf.cpp
  example_face_facemark_demo_lbf.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_facemark_demo_lbf.exe
  facemark_lbf_fitting.cpp
  example_face_facemark_lbf_fitting.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_facemark_lbf_fitting.exe
  facerec_demo.cpp
  example_face_facerec_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_facerec_demo.exe
  facerec_eigenfaces.cpp
  example_face_facerec_eigenfaces.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_facerec_eigenfaces.exe
  facerec_fisherfaces.cpp
  example_face_facerec_fisherfaces.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_facerec_fisherfaces.exe
  facerec_lbph.cpp
  example_face_facerec_lbph.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_facerec_lbph.exe
  facerec_save_load.cpp
  example_face_facerec_save_load.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_facerec_save_load.exe
  facerec_video.cpp
  example_face_facerec_video.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_facerec_video.exe
  mace_webcam.cpp
  example_face_mace_webcam.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_mace_webcam.exe
  sampleDetectLandmarks.cpp
  example_face_sampleDetectLandmarks.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_sampleDetectLandmarks.exe
  sampleDetectLandmarksvideo.cpp
  example_face_sampleDetectLandmarksvideo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_sampleDetectLandmarksvideo.exe
  sample_face_swapping.cpp
  example_face_sample_face_swapping.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_sample_face_swapping.exe
  sample_train_landmark_detector.cpp
  example_face_sample_train_landmark_detector.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_sample_train_landmark_detector.exe
  sample_train_landmark_detector2.cpp
  example_face_sample_train_landmark_detector2.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_sample_train_landmark_detector2.exe
  samplewriteconfigfile.cpp
  example_face_samplewriteconfigfile.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_face_samplewriteconfigfile.exe
  fuzzy_filtering.cpp
  example_fuzzy_fuzzy_filtering.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_fuzzy_fuzzy_filtering.exe
  fuzzy_inpainting.cpp
  example_fuzzy_fuzzy_inpainting.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_fuzzy_fuzzy_inpainting.exe
  api_example.cpp
  example_gapi_api_example.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_api_example.exe
  draw_example.cpp
  example_gapi_draw_example.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_draw_example.exe
  face_detection_mtcnn.cpp
  example_gapi_face_detection_mtcnn.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_face_detection_mtcnn.exe
  gaze_estimation.cpp
  example_gapi_gaze_estimation.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_gaze_estimation.exe
  infer_ie_onnx_hybrid.cpp
  example_gapi_infer_ie_onnx_hybrid.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_infer_ie_onnx_hybrid.exe
  infer_single_roi.cpp
  example_gapi_infer_single_roi.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_infer_single_roi.exe
  infer_ssd_onnx.cpp
  example_gapi_infer_ssd_onnx.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_infer_ssd_onnx.exe
  oak_basic_infer.cpp
  example_gapi_oak_basic_infer.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_oak_basic_infer.exe
  oak_copy.cpp
  example_gapi_oak_copy.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_oak_copy.exe
  oak_rgb_camera_encoding.cpp
  example_gapi_oak_rgb_camera_encoding.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_oak_rgb_camera_encoding.exe
  oak_small_hetero_pipeline.cpp
  example_gapi_oak_small_hetero_pipeline.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_oak_small_hetero_pipeline.exe
  onevpl_infer_single_roi.cpp
  example_gapi_onevpl_infer_single_roi.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_onevpl_infer_single_roi.exe
  pipeline_modeling_tool.cpp
  example_gapi_pipeline_modeling_tool.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_pipeline_modeling_tool.exe
  privacy_masking_camera.cpp
  example_gapi_privacy_masking_camera.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_privacy_masking_camera.exe
  semantic_segmentation.cpp
  example_gapi_semantic_segmentation.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_semantic_segmentation.exe
  slides_blur_gapi.cpp
  example_gapi_slides_blur_gapi.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_slides_blur_gapi.exe
  slides_sobel_cv.cpp
  example_gapi_slides_sobel_cv.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_slides_sobel_cv.exe
  slides_sobel_gapi.cpp
  example_gapi_slides_sobel_gapi.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_slides_sobel_gapi.exe
  text_detection.cpp
  example_gapi_text_detection.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gapi_text_detection.exe
  alpha_comp.cpp
  example_gpu_alpha_comp.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_alpha_comp.exe
  bgfg_segm.cpp
  example_gpu_bgfg_segm.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_bgfg_segm.exe
  cascadeclassifier.cpp
  example_gpu_cascadeclassifier.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_cascadeclassifier.exe
  farneback_optical_flow.cpp
  example_gpu_farneback_optical_flow.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_farneback_optical_flow.exe
  generalized_hough.cpp
  example_gpu_generalized_hough.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_generalized_hough.exe
  hog.cpp
  example_gpu_hog.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_hog.exe
  houghlines.cpp
  example_gpu_houghlines.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_houghlines.exe
  morphology.cpp
  example_gpu_morphology.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_morphology.exe
  multi.cpp
  example_gpu_multi.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_multi.exe
  pyrlk_optical_flow.cpp
  example_gpu_pyrlk_optical_flow.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_pyrlk_optical_flow.exe
  stereo_match.cpp
  example_gpu_stereo_match.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_stereo_match.exe
  stereo_multi.cpp
  example_gpu_stereo_multi.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_stereo_multi.exe
  super_resolution.cpp
C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.32.31326\include\algorithm(3031,24): warning C4244: '=': conversion from 'int' to 'char', possible loss of data [D:\build\opencv\vs_base\samples\gpu\example_gpu_super_resolution.vcxproj]
D:\opencv\opencv-4.6.0\samples\gpu\super_resolution.cpp(83): message : see reference to function template instantiation '_OutIt std::transform<std::_String_iterator<std::_String_val<std::_Simple_types<_Elem>>>,std::_String_iterator<std::_String_val<std::_Simple_types<_Elem>>>,int(__cdecl *)(int)>(const _InIt,const _InIt,_OutIt,_Fn)' being compiled [D:\build\opencv\vs_base\samples\gpu\example_gpu_super_resolution.vcxproj]
          with
          [
              _OutIt=std::_String_iterator<std::_String_val<std::_Simple_types<char>>>,
              _Elem=char,
              _InIt=std::_String_iterator<std::_String_val<std::_Simple_types<char>>>,
              _Fn=int (__cdecl *)(int)
          ]
  example_gpu_super_resolution.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_super_resolution.exe
  surf_keypoint_matcher.cpp
  example_gpu_surf_keypoint_matcher.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_surf_keypoint_matcher.exe
  video_reader.cpp
  example_gpu_video_reader.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_video_reader.exe
  video_writer.cpp
  example_gpu_video_writer.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_gpu_video_writer.exe
  example.cpp
  example_hfs_example.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_hfs_example.exe
  hash_samples.cpp
  example_img_hash_hash_samples.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_img_hash_hash_samples.exe
  intensity_transform.cpp
  example_intensity_transform_intensity_transform.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_intensity_transform_intensity_transform.exe
  compute_descriptors.cpp
  example_line_descriptor_compute_descriptors.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_line_descriptor_compute_descriptors.exe
  knn_matching.cpp
  example_line_descriptor_knn_matching.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_line_descriptor_knn_matching.exe
  lines_extraction.cpp
  example_line_descriptor_lines_extraction.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_line_descriptor_lines_extraction.exe
  lsd_lines_extraction.cpp
  example_line_descriptor_lsd_lines_extraction.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_line_descriptor_lsd_lines_extraction.exe
  matching.cpp
  example_line_descriptor_matching.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_line_descriptor_matching.exe
  radius_matching.cpp
  example_line_descriptor_radius_matching.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_line_descriptor_radius_matching.exe
  chart_detection.cpp
  example_mcc_chart_detection.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_mcc_chart_detection.exe
  chart_detection_with_network.cpp
  example_mcc_chart_detection_with_network.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_mcc_chart_detection_with_network.exe
  color_correction_model.cpp
  example_mcc_color_correction_model.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_mcc_color_correction_model.exe
  opencl-opencv-interop.cpp
  example_opencl_opencl-opencv-interop.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_opencl_opencl-opencv-interop.exe
  opengl.cpp
  example_opengl_opengl.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_opengl_opengl.exe
  gpc_evaluate.cpp
  example_optflow_gpc_evaluate.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_optflow_gpc_evaluate.exe
  gpc_train.cpp
  example_optflow_gpc_train.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_optflow_gpc_train.exe
  motempl.cpp
  example_optflow_motempl.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_optflow_motempl.exe
  optical_flow_evaluation.cpp
  example_optflow_optical_flow_evaluation.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_optflow_optical_flow_evaluation.exe
  pcaflow_demo.cpp
  example_optflow_pcaflow_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_optflow_pcaflow_demo.exe
  simpleflow_demo.cpp
  example_optflow_simpleflow_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_optflow_simpleflow_demo.exe
  tvl1_optical_flow.cpp
  example_optflow_tvl1_optical_flow.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_optflow_tvl1_optical_flow.exe
  unwrap.cpp
  example_phase_unwrapping_unwrap.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_phase_unwrapping_unwrap.exe
  plot_demo.cpp
  example_plot_plot_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_plot_plot_demo.exe
  brisque_eval_tid2008.cpp
  example_quality_brisque_eval_tid2008.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_quality_brisque_eval_tid2008.exe
  brisque_trainer_livedb.cpp
  example_quality_brisque_trainer_livedb.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_quality_brisque_trainer_livedb.exe
  map_test.cpp
  example_reg_map_test.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_reg_map_test.exe
  colored_kinfu_demo.cpp
  example_rgbd_colored_kinfu_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_rgbd_colored_kinfu_demo.exe
  dynafu_demo.cpp
  example_rgbd_dynafu_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_rgbd_dynafu_demo.exe
  kinfu_demo.cpp
  example_rgbd_kinfu_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_rgbd_kinfu_demo.exe
  large_kinfu_demo.cpp
  example_rgbd_large_kinfu_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_rgbd_large_kinfu_demo.exe
  linemod.cpp
  example_rgbd_linemod.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_rgbd_linemod.exe
  odometry_evaluation.cpp
  example_rgbd_odometry_evaluation.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_rgbd_odometry_evaluation.exe
  computeSaliency.cpp
  example_saliency_computeSaliency.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_saliency_computeSaliency.exe
  shape_example.cpp
  example_shape_shape_example.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_shape_shape_example.exe
  core_mat_checkVector.cpp
  example_snippet_core_mat_checkVector.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_core_mat_checkVector.exe
  core_merge.cpp
  example_snippet_core_merge.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_core_merge.exe
  core_reduce.cpp
  example_snippet_core_reduce.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_core_reduce.exe
  core_split.cpp
  example_snippet_core_split.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_core_split.exe
  core_various.cpp
  example_snippet_core_various.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_core_various.exe
  imgcodecs_imwrite.cpp
  example_snippet_imgcodecs_imwrite.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_imgcodecs_imwrite.exe
  imgproc_HoughLinesCircles.cpp
  example_snippet_imgproc_HoughLinesCircles.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_imgproc_HoughLinesCircles.exe
  imgproc_HoughLinesP.cpp
  example_snippet_imgproc_HoughLinesP.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_imgproc_HoughLinesP.exe
  imgproc_HoughLinesPointSet.cpp
  example_snippet_imgproc_HoughLinesPointSet.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_imgproc_HoughLinesPointSet.exe
  imgproc_applyColorMap.cpp
  example_snippet_imgproc_applyColorMap.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_imgproc_applyColorMap.exe
  imgproc_calcHist.cpp
  example_snippet_imgproc_calcHist.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_imgproc_calcHist.exe
  imgproc_drawContours.cpp
  example_snippet_imgproc_drawContours.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_imgproc_drawContours.exe
  imgproc_segmentation.cpp
  example_snippet_imgproc_segmentation.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_snippet_imgproc_segmentation.exe
  dense_disparity.cpp
  example_stereo_dense_disparity.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_stereo_dense_disparity.exe
  export_param_file.cpp
  example_stereo_export_param_file.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_stereo_export_param_file.exe
  sample.cpp
  example_stereo_sample.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_stereo_sample.exe
  cap_pattern.cpp
  example_structured_light_cap_pattern.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_structured_light_cap_pattern.exe
  capsinpattern.cpp
  example_structured_light_capsinpattern.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_structured_light_capsinpattern.exe
  pointcloud.cpp
  example_structured_light_pointcloud.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_structured_light_pointcloud.exe
  projectorcalibration.cpp
  example_structured_light_projectorcalibration.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_structured_light_projectorcalibration.exe
  ppf_load_match.cpp
  example_surface_matching_ppf_load_match.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_surface_matching_ppf_load_match.exe
  ppf_normal_computation.cpp
  example_surface_matching_ppf_normal_computation.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_surface_matching_ppf_normal_computation.exe
  bgfg_segm.cpp
  example_tapi_bgfg_segm.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tapi_bgfg_segm.exe
  camshift.cpp
  example_tapi_camshift.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tapi_camshift.exe
  clahe.cpp
  example_tapi_clahe.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tapi_clahe.exe
  dense_optical_flow.cpp
  example_tapi_dense_optical_flow.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tapi_dense_optical_flow.exe
  hog.cpp
  example_tapi_hog.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tapi_hog.exe
  opencl_custom_kernel.cpp
  example_tapi_opencl_custom_kernel.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tapi_opencl_custom_kernel.exe
  pyrlk_optical_flow.cpp
  example_tapi_pyrlk_optical_flow.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tapi_pyrlk_optical_flow.exe
  squares.cpp
  example_tapi_squares.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tapi_squares.exe
  ufacedetect.cpp
  example_tapi_ufacedetect.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tapi_ufacedetect.exe
  video_acceleration.cpp
  example_tapi_video_acceleration.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tapi_video_acceleration.exe
  character_recognition.cpp
  example_text_character_recognition.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_text_character_recognition.exe
  cropped_word_recognition.cpp
  example_text_cropped_word_recognition.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_text_cropped_word_recognition.exe
  dictnet_demo.cpp
  example_text_dictnet_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_text_dictnet_demo.exe
  end_to_end_recognition.cpp
  example_text_end_to_end_recognition.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_text_end_to_end_recognition.exe
  segmented_word_recognition.cpp
  example_text_segmented_word_recognition.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_text_segmented_word_recognition.exe
  text_recognition_cnn.cpp
  example_text_text_recognition_cnn.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_text_text_recognition_cnn.exe
  textbox_demo.cpp
  example_text_textbox_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_text_textbox_demo.exe
  textdetection.cpp
  example_text_textdetection.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_text_textdetection.exe
  textdetection_swt.cpp
  example_text_textdetection_swt.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_text_textdetection_swt.exe
  webcam_demo.cpp
  example_text_webcam_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_text_webcam_demo.exe
  benchmark.cpp
  example_tracking_benchmark.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_benchmark.exe
  csrt.cpp
  example_tracking_csrt.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_csrt.exe
  goturnTracker.cpp
  example_tracking_goturnTracker.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_goturnTracker.exe
  kcf.cpp
  example_tracking_kcf.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_kcf.exe
  multiTracker_dataset.cpp
  example_tracking_multiTracker_dataset.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_multiTracker_dataset.exe
  multitracker.cpp
  example_tracking_multitracker.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_multitracker.exe
  tracker.cpp
  example_tracking_tracker.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_tracker.exe
  tracker_dataset.cpp
  example_tracking_tracker_dataset.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_tracker_dataset.exe
  tracking_by_matching.cpp
  example_tracking_tracking_by_matching.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_tracking_by_matching.exe
  tutorial_customizing_cn_tracker.cpp
  example_tracking_tutorial_customizing_cn_tracker.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_tutorial_customizing_cn_tracker.exe
  tutorial_introduction_to_tracker.cpp
  example_tracking_tutorial_introduction_to_tracker.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_tutorial_introduction_to_tracker.exe
  tutorial_multitracker.cpp
  example_tracking_tutorial_multitracker.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tracking_tutorial_multitracker.exe
  AKAZE_match.cpp
  example_tutorial_AKAZE_match.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_AKAZE_match.exe
  AddingImages.cpp
  example_tutorial_AddingImages.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_AddingImages.exe
  AddingImagesTrackbar.cpp
  example_tutorial_AddingImagesTrackbar.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_AddingImagesTrackbar.exe
  BasicLinearTransforms.cpp
  example_tutorial_BasicLinearTransforms.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_BasicLinearTransforms.exe
  BasicLinearTransformsTrackbar.cpp
  example_tutorial_BasicLinearTransformsTrackbar.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_BasicLinearTransformsTrackbar.exe
  CannyDetector_Demo.cpp
  example_tutorial_CannyDetector_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_CannyDetector_Demo.exe
  Drawing_1.cpp
  example_tutorial_Drawing_1.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Drawing_1.exe
  Drawing_2.cpp
  example_tutorial_Drawing_2.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Drawing_2.exe
  EqualizeHist_Demo.cpp
  example_tutorial_EqualizeHist_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_EqualizeHist_Demo.exe
  Geometric_Transforms_Demo.cpp
  example_tutorial_Geometric_Transforms_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Geometric_Transforms_Demo.exe
  HitMiss.cpp
  example_tutorial_HitMiss.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_HitMiss.exe
  HoughCircle_Demo.cpp
  example_tutorial_HoughCircle_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_HoughCircle_Demo.exe
  HoughLines_Demo.cpp
  example_tutorial_HoughLines_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_HoughLines_Demo.exe
  LATCH_match.cpp
  example_tutorial_LATCH_match.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_LATCH_match.exe
  Laplace_Demo.cpp
  example_tutorial_Laplace_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Laplace_Demo.exe
  MatchTemplate_Demo.cpp
  example_tutorial_MatchTemplate_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_MatchTemplate_Demo.exe
  Morphology_1.cpp
  example_tutorial_Morphology_1.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Morphology_1.exe
  Morphology_2.cpp
  example_tutorial_Morphology_2.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Morphology_2.exe
  Morphology_3.cpp
  example_tutorial_Morphology_3.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Morphology_3.exe
  Pyramids.cpp
  example_tutorial_Pyramids.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Pyramids.exe
  Remap_Demo.cpp
  example_tutorial_Remap_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Remap_Demo.exe
  SURF_FLANN_matching_Demo.cpp
  example_tutorial_SURF_FLANN_matching_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_SURF_FLANN_matching_Demo.exe
  SURF_FLANN_matching_homography_Demo.cpp
  example_tutorial_SURF_FLANN_matching_homography_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_SURF_FLANN_matching_homography_Demo.exe
  SURF_detection_Demo.cpp
  example_tutorial_SURF_detection_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_SURF_detection_Demo.exe
  SURF_matching_Demo.cpp
  example_tutorial_SURF_matching_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_SURF_matching_Demo.exe
  Smoothing.cpp
  example_tutorial_Smoothing.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Smoothing.exe
  Sobel_Demo.cpp
  example_tutorial_Sobel_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Sobel_Demo.exe
  Threshold.cpp
  example_tutorial_Threshold.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Threshold.exe
  Threshold_inRange.cpp
  example_tutorial_Threshold_inRange.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_Threshold_inRange.exe
  age_gender_emotion_recognition.cpp
  example_tutorial_age_gender_emotion_recognition.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_age_gender_emotion_recognition.exe
  anisotropic_image_segmentation.cpp
  example_tutorial_anisotropic_image_segmentation.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_anisotropic_image_segmentation.exe
  api_ref_snippets.cpp
  example_tutorial_api_ref_snippets.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_api_ref_snippets.exe
  bg_sub.cpp
  example_tutorial_bg_sub.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_bg_sub.exe
  calcBackProject_Demo1.cpp
  example_tutorial_calcBackProject_Demo1.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_calcBackProject_Demo1.exe
  calcBackProject_Demo2.cpp
  example_tutorial_calcBackProject_Demo2.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_calcBackProject_Demo2.exe
  calcHist_Demo.cpp
  example_tutorial_calcHist_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_calcHist_Demo.exe
  camera_calibration.cpp
  example_tutorial_camera_calibration.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_camera_calibration.exe
  camshift.cpp
  example_tutorial_camshift.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_camshift.exe
  changing_contrast_brightness_image.cpp
  example_tutorial_changing_contrast_brightness_image.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_changing_contrast_brightness_image.exe
  cloning_demo.cpp
  example_tutorial_cloning_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_cloning_demo.exe
  cloning_gui.cpp
  example_tutorial_cloning_gui.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_cloning_gui.exe
  compareHist_Demo.cpp
  example_tutorial_compareHist_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_compareHist_Demo.exe
  compatibility_test.cpp
  example_tutorial_compatibility_test.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_compatibility_test.exe
  copyMakeBorder_demo.cpp
  example_tutorial_copyMakeBorder_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_copyMakeBorder_demo.exe
  cornerDetector_Demo.cpp
  example_tutorial_cornerDetector_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_cornerDetector_Demo.exe
  cornerHarris_Demo.cpp
  example_tutorial_cornerHarris_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_cornerHarris_Demo.exe
  cornerSubPix_Demo.cpp
  example_tutorial_cornerSubPix_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_cornerSubPix_Demo.exe
  decolor.cpp
  example_tutorial_decolor.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_decolor.exe
  decompose_homography.cpp
  example_tutorial_decompose_homography.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_decompose_homography.exe
  discrete_fourier_transform.cpp
  example_tutorial_discrete_fourier_transform.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_discrete_fourier_transform.exe
  display_image.cpp
  example_tutorial_display_image.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_display_image.exe
  documentation.cpp
  example_tutorial_documentation.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_documentation.exe
  dynamic_graph_snippets.cpp
  example_tutorial_dynamic_graph_snippets.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_dynamic_graph_snippets.exe
  face_beautification.cpp
  example_tutorial_face_beautification.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_face_beautification.exe
  file_input_output.cpp
  example_tutorial_file_input_output.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_file_input_output.exe
  filter2D_demo.cpp
  example_tutorial_filter2D_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_filter2D_demo.exe
  findContours_demo.cpp
  example_tutorial_findContours_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_findContours_demo.exe
  gdal-image.cpp
  example_tutorial_gdal-image.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_gdal-image.exe
  generalContours_demo1.cpp
  example_tutorial_generalContours_demo1.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_generalContours_demo1.exe
  generalContours_demo2.cpp
  example_tutorial_generalContours_demo2.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_generalContours_demo2.exe
  goodFeaturesToTrack_Demo.cpp
  example_tutorial_goodFeaturesToTrack_Demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_goodFeaturesToTrack_Demo.exe
  gpu-basics-similarity.cpp
  example_tutorial_gpu-basics-similarity.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_gpu-basics-similarity.exe
  hdr_imaging.cpp
  example_tutorial_hdr_imaging.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_hdr_imaging.exe
  homography_from_camera_displacement.cpp
  example_tutorial_homography_from_camera_displacement.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_homography_from_camera_displacement.exe
  houghcircles.cpp
  example_tutorial_houghcircles.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_houghcircles.exe
  houghlines.cpp
  example_tutorial_houghlines.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_houghlines.exe
  how_to_scan_images.cpp
  example_tutorial_how_to_scan_images.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_how_to_scan_images.exe
  how_to_use_OpenCV_parallel_for_.cpp
  example_tutorial_how_to_use_OpenCV_parallel_for_.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_how_to_use_OpenCV_parallel_for_.exe
  how_to_use_OpenCV_parallel_for_new.cpp
  example_tutorial_how_to_use_OpenCV_parallel_for_new.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_how_to_use_OpenCV_parallel_for_new.exe
  hull_demo.cpp
  example_tutorial_hull_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_hull_demo.exe
  imageSegmentation.cpp
  example_tutorial_imageSegmentation.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_imageSegmentation.exe
  introduction_to_pca.cpp
  example_tutorial_introduction_to_pca.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_introduction_to_pca.exe
  introduction_to_svm.cpp
  example_tutorial_introduction_to_svm.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_introduction_to_svm.exe
  introduction_windows_vs.cpp
  example_tutorial_introduction_windows_vs.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_introduction_windows_vs.exe
  kernel_api_snippets.cpp
  example_tutorial_kernel_api_snippets.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_kernel_api_snippets.exe
  mat_mask_operations.cpp
  example_tutorial_mat_mask_operations.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_mat_mask_operations.exe
  mat_operations.cpp
  example_tutorial_mat_operations.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_mat_operations.exe
  mat_the_basic_image_container.cpp
  example_tutorial_mat_the_basic_image_container.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_mat_the_basic_image_container.exe
  meanshift.cpp
  example_tutorial_meanshift.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_meanshift.exe
  moments_demo.cpp
  example_tutorial_moments_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_moments_demo.exe
  motion_deblur_filter.cpp
  example_tutorial_motion_deblur_filter.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_motion_deblur_filter.exe
  non_linear_svms.cpp
  example_tutorial_non_linear_svms.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_non_linear_svms.exe
  npr_demo.cpp
  example_tutorial_npr_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_npr_demo.exe
  objectDetection.cpp
  example_tutorial_objectDetection.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_objectDetection.exe
  optical_flow.cpp
  example_tutorial_optical_flow.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_optical_flow.exe
  optical_flow_dense.cpp
  example_tutorial_optical_flow_dense.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_optical_flow_dense.exe
  orbbec_astra.cpp
  example_tutorial_orbbec_astra.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_orbbec_astra.exe
  out_of_focus_deblur_filter.cpp
  example_tutorial_out_of_focus_deblur_filter.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_out_of_focus_deblur_filter.exe
  panorama_stitching_rotating_camera.cpp
  example_tutorial_panorama_stitching_rotating_camera.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_panorama_stitching_rotating_camera.exe
  periodic_noise_removing_filter.cpp
  example_tutorial_periodic_noise_removing_filter.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_periodic_noise_removing_filter.exe
  perspective_correction.cpp
  example_tutorial_perspective_correction.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_perspective_correction.exe
  planar_tracking.cpp
  example_tutorial_planar_tracking.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_planar_tracking.exe
  main_detection.cpp
  CsvReader.cpp
  CsvWriter.cpp
  ModelRegistration.cpp
  Mesh.cpp
  Model.cpp
  PnPProblem.cpp
  Utils.cpp
  RobustMatcher.cpp
  example_tutorial_pnp_detection.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_pnp_detection.exe
  main_registration.cpp
  CsvReader.cpp
  CsvWriter.cpp
  ModelRegistration.cpp
  Mesh.cpp
  Model.cpp
  PnPProblem.cpp
  Utils.cpp
  RobustMatcher.cpp
  example_tutorial_pnp_registration.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_pnp_registration.exe
  pointPolygonTest_demo.cpp
  example_tutorial_pointPolygonTest_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_pointPolygonTest_demo.exe
  porting_anisotropic_image_segmentation_gapi.cpp
  example_tutorial_porting_anisotropic_image_segmentation_gapi.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_porting_anisotropic_image_segmentation_gapi.exe
  porting_anisotropic_image_segmentation_gapi_fluid.cpp
  example_tutorial_porting_anisotropic_image_segmentation_gapi_fluid.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_porting_anisotropic_image_segmentation_gapi_fluid.exe
  pose_from_homography.cpp
  example_tutorial_pose_from_homography.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_pose_from_homography.exe
  security_barrier_camera.cpp
  example_tutorial_security_barrier_camera.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_security_barrier_camera.exe
  univ_intrin.cpp
  example_tutorial_univ_intrin.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_univ_intrin.exe
  video-input-psnr-ssim.cpp
  example_tutorial_video-input-psnr-ssim.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_video-input-psnr-ssim.exe
  video-write.cpp
  example_tutorial_video-write.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_tutorial_video-write.exe
  videostab.cpp
  example_videostab_videostab.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_videostab_videostab.exe
  qrcode_example.cpp
  example_wechat_qrcode_qrcode_example.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_wechat_qrcode_qrcode_example.exe
  bagofwords_classification.cpp
  example_xfeatures2d_bagofwords_classification.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xfeatures2d_bagofwords_classification.exe
  gms_matcher.cpp
  example_xfeatures2d_gms_matcher.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xfeatures2d_gms_matcher.exe
  pct_signatures.cpp
  example_xfeatures2d_pct_signatures.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xfeatures2d_pct_signatures.exe
  pct_webcam.cpp
  example_xfeatures2d_pct_webcam.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xfeatures2d_pct_webcam.exe
  shape_transformation.cpp
  example_xfeatures2d_shape_transformation.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xfeatures2d_shape_transformation.exe
  surf_matcher.cpp
  example_xfeatures2d_surf_matcher.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xfeatures2d_surf_matcher.exe
  video_homography.cpp
  example_xfeatures2d_video_homography.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xfeatures2d_video_homography.exe
  brightedgesexample.cpp
  example_ximgproc_brightedgesexample.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_brightedgesexample.exe
  color_match_template.cpp
  example_ximgproc_color_match_template.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_color_match_template.exe
  colorize.cpp
  example_ximgproc_colorize.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_colorize.exe
  deriche_demo.cpp
  example_ximgproc_deriche_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_deriche_demo.exe
  disparity_filtering.cpp
  example_ximgproc_disparity_filtering.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_disparity_filtering.exe
  edgeboxes_demo.cpp
  example_ximgproc_edgeboxes_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_edgeboxes_demo.exe
  edgepreserving_filter_demo.cpp
  example_ximgproc_edgepreserving_filter_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_edgepreserving_filter_demo.exe
  fast_hough_transform.cpp
  example_ximgproc_fast_hough_transform.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_fast_hough_transform.exe
  filterdemo.cpp
  example_ximgproc_filterdemo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_filterdemo.exe
  fld_lines.cpp
  example_ximgproc_fld_lines.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_fld_lines.exe
  fourier_descriptors_demo.cpp
  example_ximgproc_fourier_descriptors_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_fourier_descriptors_demo.exe
  graphsegmentation_demo.cpp
  example_ximgproc_graphsegmentation_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_graphsegmentation_demo.exe
  live_demo.cpp
  example_ximgproc_live_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_live_demo.exe
  niblack_thresholding.cpp
  example_ximgproc_niblack_thresholding.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_niblack_thresholding.exe
  paillou_demo.cpp
  example_ximgproc_paillou_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_paillou_demo.exe
  peilin.cpp
  example_ximgproc_peilin.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_peilin.exe
  radon_transform_demo.cpp
  example_ximgproc_radon_transform_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_radon_transform_demo.exe
  run_length_morphology_demo.cpp
  example_ximgproc_run_length_morphology_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_run_length_morphology_demo.exe
  seeds.cpp
  example_ximgproc_seeds.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_seeds.exe
  selectivesearchsegmentation_demo.cpp
  example_ximgproc_selectivesearchsegmentation_demo.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_selectivesearchsegmentation_demo.exe
  slic.cpp
  example_ximgproc_slic.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_slic.exe
  structured_edge_detection.cpp
  example_ximgproc_structured_edge_detection.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_structured_edge_detection.exe
  thinning.cpp
  example_ximgproc_thinning.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_ximgproc_thinning.exe
  bm3d_image_denoising.cpp
  example_xphoto_bm3d_image_denoising.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xphoto_bm3d_image_denoising.exe
  color_balance.cpp
  example_xphoto_color_balance.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xphoto_color_balance.exe
  dct_image_denoising.cpp
  example_xphoto_dct_image_denoising.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xphoto_dct_image_denoising.exe
  inpainting.cpp
  example_xphoto_inpainting.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xphoto_inpainting.exe
  oil.cpp
  example_xphoto_oil.vcxproj -> D:\build\opencv\vs_base\bin\Release\example_xphoto_oil.exe
  opencv_annotation.cpp
  opencv_annotation.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_annotation.exe
  calibController.cpp
  calibPipeline.cpp
  frameProcessor.cpp
  main.cpp
  parametersController.cpp
  rotationConverters.cpp
  opencv_interactive-calibration.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_interactive-calibration.exe
  model_diagnostics.cpp
  opencv_model_diagnostics.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_model_diagnostics.exe
  cuda_perf.cpp
  cuda_test.cpp
  ocl_perf.cpp
  ocl_test.cpp
  ts.cpp
  ts_arrtest.cpp
  ts_func.cpp
  ts_gtest.cpp
  ts_perf.cpp
  ts_tags.cpp
  opencv_ts.vcxproj -> D:\build\opencv\vs_base\lib\Release\opencv_ts460.lib
  perf_aruco.cpp
  perf_main.cpp
  opencv_perf_aruco.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_aruco.exe
  perf_retina.ocl.cpp
  perf_main.cpp
  opencv_perf_bioinspired.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_bioinspired.exe
  perf_stereobm.cpp
  perf_affine2d.cpp
  perf_cicrlesGrid.cpp
  perf_main.cpp
  perf_pnp.cpp
  perf_stereosgbm.cpp
  perf_undistort.cpp
  opencv_perf_calib3d.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_calib3d.exe
  perf_gpumat.cpp
  perf_bufferpool.cpp
  perf_channels.cpp
  perf_dxt.cpp
  perf_gemm.cpp
  perf_matop.cpp
  perf_usage_flags.cpp
  perf_abs.cpp
  perf_addWeighted.cpp
  perf_allocation.cpp
  perf_bitwise.cpp
  perf_compare.cpp
  perf_convertTo.cpp
  perf_cvround.cpp
  perf_dft.cpp
  perf_dot.cpp
  perf_inRange.cpp
  perf_io_base64.cpp
  perf_lut.cpp
  perf_main.cpp
  perf_mat.cpp
  perf_math.cpp
  perf_merge.cpp
  perf_minmaxloc.cpp
  perf_norm.cpp
  perf_reduce.cpp
  perf_sort.cpp
  perf_split.cpp
  perf_stat.cpp
  perf_umat.cpp
  perf_arithm.cpp
  perf_arithm.cpp
  opencv_perf_core.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_core.exe
  perf_arithm.cpp
  perf_core.cpp
  perf_element_operations.cpp
  perf_main.cpp
  perf_reductions.cpp
  opencv_perf_cudaarithm.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_cudaarithm.exe
  perf_bgsegm.cpp
  perf_main.cpp
  opencv_perf_cudabgsegm.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_cudabgsegm.exe
  perf_main.cpp
  perf_video.cpp
  opencv_perf_cudacodec.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_cudacodec.exe
  perf_features2d.cpp
  perf_main.cpp
  opencv_perf_cudafeatures2d.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_cudafeatures2d.exe
  perf_filters.cpp
  perf_main.cpp
  opencv_perf_cudafilters.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_cudafilters.exe
  perf_bilateral_filter.cpp
  perf_blend.cpp
  perf_canny.cpp
  perf_color.cpp
  perf_corners.cpp
  perf_gftt.cpp
  perf_histogram.cpp
  perf_hough.cpp
  perf_main.cpp
  perf_match_template.cpp
  perf_mean_shift.cpp
  opencv_perf_cudaimgproc.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_cudaimgproc.exe
  perf_bgsegm.cpp
  perf_calib3d.cpp
  perf_labeling.cpp
  perf_main.cpp
  opencv_perf_cudalegacy.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_cudalegacy.exe
  perf_main.cpp
  perf_objdetect.cpp
  opencv_perf_cudaobjdetect.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_cudaobjdetect.exe
  perf_main.cpp
  perf_optflow.cpp
  opencv_perf_cudaoptflow.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_cudaoptflow.exe
  perf_main.cpp
  perf_stereo.cpp
  opencv_perf_cudastereo.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_cudastereo.exe
  perf_main.cpp
  perf_warping.cpp
  opencv_perf_cudawarping.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_cudawarping.exe
  perf_caffe.cpp
  perf_common.cpp
  perf_convolution.cpp
  perf_convolution1d.cpp
  perf_convolution3d.cpp
  perf_layer.cpp
  perf_main.cpp
  perf_net.cpp
  perf_recurrent.cpp
  opencv_perf_dnn.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_dnn.exe
  perf_dnn_superres.cpp
  perf_main.cpp
  opencv_perf_dnn_superres.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_dnn_superres.exe
  perf_brute_force_matcher.cpp
  perf_batchDistance.cpp
  perf_main.cpp
  perf_feature2d.cpp
  perf_feature2d.cpp
  opencv_perf_features2d.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_features2d.exe
  gapi_core_perf_tests.cpp
  gapi_imgproc_perf_tests.cpp
  gapi_render_perf_tests.cpp
  gapi_video_perf_tests.cpp
  gapi_core_perf_tests_cpu.cpp
  gapi_core_perf_tests_fluid.cpp
  gapi_imgproc_perf_tests_cpu.cpp
  gapi_imgproc_perf_tests_fluid.cpp
  gapi_video_perf_tests_cpu.cpp
  gapi_core_perf_tests_gpu.cpp
  gapi_imgproc_perf_tests_gpu.cpp
  gapi_compiler_perf_tests.cpp
  perf_bench.cpp
  perf_main.cpp
  gapi_render_perf_tests_ocv.cpp
  gapi_streaming_source_perf_tests.cpp
  opencv_perf_gapi.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_gapi.exe
  perf_main.cpp
  opencv_perf_imgcodecs.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_imgcodecs.exe
  perf_3vs4.cpp
  perf_blend.cpp
  perf_color.cpp
  perf_filters.cpp
  perf_gftt.cpp
  perf_imgproc.cpp
  perf_imgwarp.cpp
  perf_pyramid.cpp
  perf_bilateral.cpp
  perf_blur.cpp
  perf_canny.cpp
  perf_contours.cpp
  perf_corners.cpp
  perf_cvt_color.cpp
  perf_distanceTransform.cpp
  perf_filter2d.cpp
  perf_floodfill.cpp
  perf_goodFeaturesToTrack.cpp
  perf_histogram.cpp
  perf_houghcircles.cpp
  perf_integral.cpp
  perf_main.cpp
  perf_morph.cpp
  perf_phasecorr.cpp
  perf_pyramids.cpp
  perf_remap.cpp
  perf_resize.cpp
  perf_sepfilters.cpp
  perf_spatialgradient.cpp
  perf_threshold.cpp
  perf_warp.cpp
  perf_accumulate.cpp
  perf_houghlines.cpp
  perf_matchTemplate.cpp
  perf_moments.cpp
  perf_accumulate.cpp
  perf_houghlines.cpp
  perf_matchTemplate.cpp
  perf_moments.cpp
  opencv_perf_imgproc.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_imgproc.exe
  perf_descriptors.cpp
  perf_detection.cpp
  perf_main.cpp
  perf_matching.cpp
  opencv_perf_line_descriptor.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_line_descriptor.exe
  perf_cascades.cpp
  perf_hogdetect.cpp
  perf_main.cpp
  perf_qrcode_pipeline.cpp
  opencv_perf_objdetect.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_objdetect.exe
  perf_optflow_dualTVL1.cpp
  perf_deepflow.cpp
  perf_main.cpp
  perf_rlof.cpp
  perf_tvl1optflow.cpp
  opencv_perf_optflow.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_optflow.exe
  perf_denoising.cpp
  perf_cuda.cpp
  perf_inpaint.cpp
  perf_main.cpp
  opencv_perf_photo.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_photo.exe
  perf_main.cpp
  perf_reg.cpp
  opencv_perf_reg.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_reg.exe
  perf_main.cpp
  perf_tsdf.cpp
  opencv_perf_rgbd.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_rgbd.exe
  perf_bm.cpp
  perf_descriptor.cpp
  perf_main.cpp
  opencv_perf_stereo.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_stereo.exe
  perf_stitch.cpp
  perf_warpers.cpp
  perf_estimators.cpp
  perf_main.cpp
  perf_matchers.cpp
  perf_stich.cpp
  opencv_perf_stitching.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_stitching.exe
  perf_main.cpp
  perf_superres.cpp
  opencv_perf_superres.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_superres.exe
  perf_main.cpp
  perf_trackers.cpp
  opencv_perf_tracking.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_tracking.exe
  perf_bgfg_knn.cpp
  perf_bgfg_mog2.cpp
  perf_dis_optflow.cpp
  perf_motempl.cpp
  perf_optflow_farneback.cpp
  perf_optflow_pyrlk.cpp
  perf_disflow.cpp
  perf_ecc.cpp
  perf_main.cpp
  perf_optflowpyrlk.cpp
  perf_trackers.cpp
  perf_variational_refinement.cpp
  perf_bgfg_knn.cpp
  perf_bgfg_mog2.cpp
  opencv_perf_video.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_video.exe
  perf_input.cpp
  perf_main.cpp
  perf_output.cpp
  opencv_perf_videoio.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_videoio.exe
  perf_beblid.cpp
  perf_daisy.cpp
  perf_latch.cpp
  perf_main.cpp
  perf_msd.cpp
  perf_surf.cpp
  perf_surf.cuda.cpp
  perf_surf.ocl.cpp
  perf_vgg.cpp
  opencv_perf_xfeatures2d.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_xfeatures2d.exe
  perf_adaptive_manifold.cpp
  perf_bilateral_texture_filter.cpp
  perf_disparity_wls_filter.cpp
  perf_domain_transform.cpp
  perf_edgepreserving_filter.cpp
  perf_fast_hough_transform.cpp
  perf_fgs_filter.cpp
  perf_guided_filter.cpp
  perf_joint_bilateral_filter.cpp
  perf_l0_smooth.cpp
  perf_main.cpp
  perf_radon_transform.cpp
  perf_ridge_detection_filter.cpp
  perf_rolling_guidance_filter.cpp
  perf_run_length_morphology.cpp
  perf_weighted_median_filter.cpp
  opencv_perf_ximgproc.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_ximgproc.exe
  perf_grayworld.cpp
  perf_learning_based_color_balance.cpp
  perf_main.cpp
  opencv_perf_xphoto.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_perf_xphoto.exe
  test_arucodetection.cpp
  test_boarddetection.cpp
  test_charucodetection.cpp
  test_main.cpp
  test_misc.cpp
  opencv_test_aruco.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_aruco.exe
  test_barcode.cpp
  test_main.cpp
  opencv_test_barcode.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_barcode.exe
  test_backgroundsubtractor_gbh.cpp
  test_backgroundsubtractor_lsbp.cpp
  test_main.cpp
  opencv_test_bgsegm.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_bgsegm.exe
  test_main.cpp
  test_retina_ocl.cpp
  opencv_test_bioinspired.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_bioinspired.exe
  test_stereobm.cpp
  test_affine2d_estimator.cpp
  test_affine3.cpp
  test_affine3d_estimator.cpp
  test_affine_partial2d_estimator.cpp
  test_calibration_hand_eye.cpp
  test_cameracalibration.cpp
  test_cameracalibration_artificial.cpp
  test_cameracalibration_badarg.cpp
  test_cameracalibration_tilt.cpp
  test_chessboardgenerator.cpp
  test_chesscorners.cpp
  test_chesscorners_badarg.cpp
  test_chesscorners_timing.cpp
  test_compose_rt.cpp
  test_cornerssubpix.cpp
  test_decompose_projection.cpp
  test_filter_homography_decomp.cpp
  test_fisheye.cpp
  test_fundam.cpp
  test_homography.cpp
  test_homography_decomp.cpp
  test_main.cpp
  test_modelest.cpp
  test_posit.cpp
  test_reproject_image_to_3d.cpp
  test_solvepnp_ransac.cpp
  test_stereomatching.cpp
  test_translation3d_estimator.cpp
  test_undistort.cpp
  test_undistort_badarg.cpp
  test_undistort_points.cpp
  test_usac.cpp
  opencv_test_calib3d.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_calib3d.exe
  test_intrin128.avx.cpp
  opencv_test_core_AVX.vcxproj -> D:\build\opencv\vs_base\modules\world\opencv_test_core_AVX.dir\Release\opencv_test_core_AVX.lib
  test_intrin128.avx2.cpp
  test_intrin256.avx2.cpp
  opencv_test_core_AVX2.vcxproj -> D:\build\opencv\vs_base\modules\world\opencv_test_core_AVX2.dir\Release\opencv_test_core_AVX2.lib
  test_intrin128.avx512_skx.cpp
  test_intrin256.avx512_skx.cpp
  test_intrin512.avx512_skx.cpp
  opencv_test_core_AVX512_SKX.vcxproj -> D:\build\opencv\vs_base\modules\world\opencv_test_core_AVX512_SKX.dir\Release\opencv_test_core_AVX512_SKX.lib
  test_intrin128.fp16.cpp
  opencv_test_core_FP16.vcxproj -> D:\build\opencv\vs_base\modules\world\opencv_test_core_FP16.dir\Release\opencv_test_core_FP16.lib
  test_intrin128.ssse3.cpp
  test_intrin128.sse4_1.cpp
  opencv_test_core_SSE4_1.vcxproj -> D:\build\opencv\vs_base\modules\world\opencv_test_core_SSE4_1.dir\Release\opencv_test_core_SSE4_1.lib
  test_intrin128.sse4_2.cpp
  opencv_test_core_SSE4_2.vcxproj -> D:\build\opencv\vs_base\modules\world\opencv_test_core_SSE4_2.dir\Release\opencv_test_core_SSE4_2.lib
  test_arithm.cpp
  test_channels.cpp
  test_dft.cpp
  test_gemm.cpp
  test_image2d.cpp
  test_matrix_expr.cpp
  test_matrix_operation.cpp
  test_async.cpp
  test_concatenation.cpp
  test_conjugate_gradient.cpp
  test_countnonzero.cpp
  test_cuda.cpp
  test_downhill_simplex.cpp
  test_ds.cpp
  test_dxt.cpp
  test_eigen.cpp
  test_hal_core.cpp
  test_intrin.cpp
  test_intrin_emulator.cpp
  test_io.cpp
  test_logtagconfigparser.cpp
  test_logtagmanager.cpp
  test_lpsolver.cpp
  test_main.cpp
  test_mat.cpp
  test_math.cpp
  test_misc.cpp
  test_operations.cpp
  test_ptr.cpp
  test_quaternion.cpp
  test_rand.cpp
  test_rotatedrect.cpp
  test_umat.cpp
  test_utils.cpp
  test_opencl.cpp
  test_arithm.cpp
  test_opencl.cpp
  test_intrin128.sse2.cpp
  test_intrin128.sse3.cpp
  opencv_test_core.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_core.exe
  test_arithm.cpp
  test_buffer_pool.cpp
  test_core.cpp
  test_element_operations.cpp
  test_event.cpp
  test_gpumat.cpp
  test_main.cpp
  test_opengl.cpp
  test_reductions.cpp
  test_stream.cpp
     Creating library D:/build/opencv/vs_base/bin/Release/opencv_test_cudaarithm.lib and object D:/build/opencv/vs_base/bin/Release/opencv_test_cudaarithm.exp
LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library [D:\build\opencv\vs_base\modules\world\opencv_test_cudaarithm.vcxproj]
  opencv_test_cudaarithm.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_cudaarithm.exe
  test_bgsegm.cpp
  test_main.cpp
  opencv_test_cudabgsegm.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_cudabgsegm.exe
  test_main.cpp
  test_video.cpp
  opencv_test_cudacodec.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_cudacodec.exe
  test_features2d.cpp
  test_main.cpp
     Creating library D:/build/opencv/vs_base/bin/Release/opencv_test_cudafeatures2d.lib and object D:/build/opencv/vs_base/bin/Release/opencv_test_cudafeatures2d.exp
LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library [D:\build\opencv\vs_base\modules\world\opencv_test_cudafeatures2d.vcxproj]
  opencv_test_cudafeatures2d.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_cudafeatures2d.exe
  test_filters.cpp
  test_main.cpp
  opencv_test_cudafilters.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_cudafilters.exe
  test_bilateral_filter.cpp
  test_blend.cpp
  test_canny.cpp
  test_color.cpp
  test_connectedcomponents.cpp
  test_corners.cpp
  test_gftt.cpp
  test_histogram.cpp
  test_hough.cpp
  test_main.cpp
  test_match_template.cpp
  test_mean_shift.cpp
  opencv_test_cudaimgproc.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_cudaimgproc.exe
  TestCompact.cpp
  TestDrawRects.cpp
  TestHaarCascadeApplication.cpp
  TestHaarCascadeLoader.cpp
  TestHypothesesFilter.cpp
  TestHypothesesGrow.cpp
  TestIntegralImage.cpp
  TestIntegralImageSquared.cpp
  TestRectStdDev.cpp
  TestResize.cpp
  TestTranspose.cpp
  main_nvidia.cpp
  test_calib3d.cpp
  test_labeling.cpp
  test_main.cpp
  test_nvidia.cpp
     Creating library D:/build/opencv/vs_base/bin/Release/opencv_test_cudalegacy.lib and object D:/build/opencv/vs_base/bin/Release/opencv_test_cudalegacy.exp
LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library [D:\build\opencv\vs_base\modules\world\opencv_test_cudalegacy.vcxproj]
  opencv_test_cudalegacy.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_cudalegacy.exe
  test_main.cpp
  test_objdetect.cpp
  opencv_test_cudaobjdetect.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_cudaobjdetect.exe
  test_main.cpp
  test_optflow.cpp
  opencv_test_cudaoptflow.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_cudaoptflow.exe
  test_main.cpp
  test_sgm_funcs.cpp
  test_stereo.cpp
  opencv_test_cudastereo.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_cudastereo.exe
  test_main.cpp
  test_pyramids.cpp
  test_remap.cpp
  test_resize.cpp
  test_warp_affine.cpp
  test_warp_perspective.cpp
  opencv_test_cudawarping.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_cudawarping.exe
  npy_blob.cpp
  test_backends.cpp
  test_caffe_importer.cpp
  test_common.cpp
  test_darknet_importer.cpp
  test_googlenet.cpp
  test_halide_layers.cpp
  test_ie_models.cpp
  test_int8_layers.cpp
  test_layers.cpp
  test_main.cpp
  test_misc.cpp
  test_model.cpp
  test_nms.cpp
  test_onnx_conformance.cpp
  test_onnx_importer.cpp
  test_tf_importer.cpp
  test_torch_importer.cpp
  opencv_test_dnn.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_dnn.exe
  test_dnn_superres.cpp
  test_main.cpp
  opencv_test_dnn_superres.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_dnn_superres.exe
  test_bif.cpp
  test_face_align.cpp
  test_facemark.cpp
  test_facemark_aam.cpp
  test_facemark_lbf.cpp
  test_loadsave.cpp
  test_mace.cpp
  test_main.cpp
  opencv_test_face.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_face.exe
  test_brute_force_matcher.cpp
  test_feature2d.cpp
  test_affine_feature.cpp
  test_agast.cpp
  test_akaze.cpp
  test_blobdetector.cpp
  test_brisk.cpp
  test_descriptors_invariance.cpp
  test_descriptors_regression.cpp
  test_detectors_invariance.cpp
  test_detectors_regression.cpp
  test_drawing.cpp
  test_fast.cpp
  test_keypoints.cpp
  test_main.cpp
  test_matchers_algorithmic.cpp
  test_mser.cpp
  test_nearestneighbors.cpp
  test_orb.cpp
  test_sift.cpp
  test_utils.cpp
  opencv_test_features2d.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_features2d.exe
  test_lshtable_badarg.cpp
  test_main.cpp
  opencv_test_flann.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_flann.exe
  test_f0.cpp
  test_f1.cpp
  test_image.cpp
  test_main.cpp
  opencv_test_fuzzy.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_fuzzy.exe
  gapi_compoundkernel_tests.cpp
  gapi_core_tests.cpp
  gapi_imgproc_tests.cpp
  gapi_operators_tests.cpp
  gapi_render_tests.cpp
  gapi_stereo_tests.cpp
  gapi_video_tests.cpp
  gapi_core_tests_cpu.cpp
  gapi_core_tests_fluid.cpp
  gapi_imgproc_tests_cpu.cpp
  gapi_imgproc_tests_fluid.cpp
  gapi_ocv_stateful_kernel_tests.cpp
  gapi_operators_tests_cpu.cpp
  gapi_operators_tests_fluid.cpp
  gapi_stereo_tests_cpu.cpp
  gapi_video_tests_cpu.cpp
  gtbbexecutor_internal_tests.cpp
  gapi_array_tests.cpp
  gapi_async_test.cpp
  gapi_basic_hetero_tests.cpp
  gapi_compile_args_tests.cpp
  gapi_desc_tests.cpp
  gapi_fluid_parallel_rois_test.cpp
  gapi_fluid_resize_test.cpp
  gapi_fluid_roi_test.cpp
  gapi_fluid_test.cpp
  gapi_fluid_test_kernels.cpp
  gapi_frame_tests.cpp
  gapi_gcompiled_tests.cpp
  gapi_gcomputation_tests.cpp
  gapi_gpu_test.cpp
  gapi_graph_meta_tests.cpp
  gapi_kernel_tests.cpp
  gapi_opaque_tests.cpp
  gapi_plaidml_pipelines.cpp
  gapi_planar_test.cpp
  gapi_sample_pipelines.cpp
  gapi_scalar_tests.cpp
  gapi_smoke_test.cpp
  gapi_transform_tests.cpp
  gapi_typed_tests.cpp
  gapi_util_tests.cpp
  gapi_core_tests_gpu.cpp
  gapi_imgproc_tests_gpu.cpp
  gapi_operators_tests_gpu.cpp
  gapi_infer_ie_test.cpp
  gapi_infer_onnx_test.cpp
  gapi_infer_tests.cpp
  gapi_int_backend_tests.cpp
  gapi_int_dynamic_graph.cpp
  gapi_int_executor_tests.cpp
  gapi_int_garg_test.cpp
  gapi_int_gmetaarg_test.cpp
  gapi_int_gmodel_builder_test.cpp
  gapi_int_island_fusion_tests.cpp
  gapi_int_island_tests.cpp
  gapi_int_pattern_matching_test.cpp
  gapi_int_perform_substitution_test.cpp
  gapi_int_proto_tests.cpp
  gapi_int_recompilation_test.cpp
  gapi_int_vectorref_test.cpp
  gapi_transactions_test.cpp
  gapi_tests_oak.cpp
  conc_queue_tests.cpp
  gapi_types_tests.cpp
  last_written_value_tests.cpp
  mat_tests.cpp
  scalar_tests.cpp
  ftp_render_test.cpp
  gapi_render_tests_ocv.cpp
  rmat_integration_tests.cpp
  rmat_tests.cpp
  rmat_view_tests.cpp
  gapi_s11n_tests.cpp
  gapi_sample_pipelines_s11n.cpp
  gapi_gstreamer_pipeline_facade_int_tests.cpp
  gapi_gstreamersource_tests.cpp
  gapi_streaming_sync_tests.cpp
  gapi_streaming_tests.cpp
  gapi_streaming_utils_test.cpp
  gapi_streaming_vpl_core_test.cpp
  gapi_streaming_vpl_data_provider.cpp
  gapi_streaming_vpl_device_selector.cpp
  gapi_streaming_vpp_preproc_test.cpp
  test_main.cpp
  any_tests.cpp
  optional_tests.cpp
  variant_tests.cpp
  opencv_test_gapi.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_gapi.exe
  test_gui.cpp
  test_main.cpp
  opencv_test_highgui.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_highgui.exe
  test_average_hash.cpp
  test_block_mean_hash.cpp
  test_main.cpp
  test_marr_hildreth_hash.cpp
  test_phash.cpp
  test_radial_variance_hash.cpp
  opencv_test_img_hash.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_img_hash.exe
  test_common.cpp
  test_grfmt.cpp
  test_jpeg.cpp
  test_main.cpp
  test_png.cpp
  test_read_write.cpp
  test_tiff.cpp
  test_webp.cpp
  opencv_test_imgcodecs.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_imgcodecs.exe
  test_accumulate.cpp
  test_blend.cpp
  test_boxfilter.cpp
  test_filter2d.cpp
  test_filters.cpp
  test_gftt.cpp
  test_histogram.cpp
  test_imgproc.cpp
  test_match_template.cpp
  test_medianfilter.cpp
  test_pyramids.cpp
  test_sepfilter2d.cpp
  test_warp.cpp
  test_approxpoly.cpp
  test_bilateral_filter.cpp
  test_boundingrect.cpp
  test_connectedcomponents.cpp
  test_contours.cpp
  test_convhull.cpp
  test_cvtyuv.cpp
  test_distancetransform.cpp
  test_drawing.cpp
  test_emd.cpp
  test_filter.cpp
  test_fitellipse.cpp
  test_fitellipse_ams.cpp
  test_fitellipse_direct.cpp
  test_floodfill.cpp
  test_goodfeaturetotrack.cpp
  test_grabcut.cpp
  test_histograms.cpp
  test_houghcircles.cpp
  test_imgproc_umat.cpp
  test_imgwarp.cpp
  test_imgwarp_strict.cpp
  test_intelligent_scissors.cpp
  test_intersectconvexconvex.cpp
  test_intersection.cpp
  test_lsd.cpp
  test_main.cpp
  test_moments.cpp
  test_pc.cpp
  test_resize_bitexact.cpp
  test_smooth_bitexact.cpp
  test_subdivision2d.cpp
  test_templmatch.cpp
  test_templmatchmask.cpp
  test_thresh.cpp
  test_watershed.cpp
  test_canny.cpp
  test_color.cpp
  test_houghlines.cpp
  test_canny.cpp
  test_color.cpp
  test_houghlines.cpp
  opencv_test_imgproc.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_imgproc.exe
  test_intensity_transform.cpp
  test_main.cpp
  opencv_test_intensity_transform.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_intensity_transform.exe
  test_descriptors_regression.cpp
  test_detector_regression.cpp
  test_main.cpp
  test_matcher_regression.cpp
  opencv_test_line_descriptor.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_line_descriptor.exe
  test_ccm.cpp
  test_main.cpp
  test_mcc.cpp
  opencv_test_mcc.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_mcc.exe
  test_ann.cpp
  test_bayes.cpp
  test_em.cpp
  test_kmeans.cpp
  test_knearest.cpp
  test_lr.cpp
  test_main.cpp
  test_mltests.cpp
  test_rtrees.cpp
  test_save_load.cpp
  test_svmsgd.cpp
  test_svmtrainauto.cpp
  test_utils.cpp
  opencv_test_ml.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_ml.exe
  test_hogdetector.cpp
  test_cascadeandhog.cpp
  test_face.cpp
  test_main.cpp
  test_qrcode.cpp
  test_qrcode_encode.cpp
  opencv_test_objdetect.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_objdetect.exe
  test_motempl.cpp
  test_optflow_tvl1flow.cpp
  test_OF_accuracy.cpp
  test_main.cpp
  test_motiontemplates.cpp
  test_tvl1optflow.cpp
  opencv_test_optflow.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_optflow.exe
  test_main.cpp
  test_unwrapping.cpp
  opencv_test_phase_unwrapping.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_phase_unwrapping.exe
  test_denoising.cpp
  test_cloning.cpp
  test_decolor.cpp
  test_denoise_tvl1.cpp
  test_denoising.cuda.cpp
  test_hdr.cpp
  test_inpaint.cpp
  test_main.cpp
  test_npr.cpp
  test_denoising.cpp
  opencv_test_photo.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_photo.exe
  test_brisque.cpp
  test_gmsd.cpp
  test_main.cpp
  test_mse.cpp
  test_psnr.cpp
  test_ssim.cpp
  opencv_test_quality.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_quality.exe
  test_main.cpp
  opencv_test_rapid.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_rapid.exe
  test_main.cpp
  test_reg.cpp
  opencv_test_reg.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_reg.exe
  test_tsdf.cpp
  test_colored_kinfu.cpp
  test_dynafu.cpp
  test_kinfu.cpp
  test_main.cpp
  test_normal.cpp
  test_odometry.cpp
  test_pose_graph.cpp
  test_registration.cpp
  test_utils.cpp
D:\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_dynafu.cpp(124,5): warning C4551: function call missing argument list [D:\build\opencv\vs_base\modules\world\opencv_test_rgbd.vcxproj]
  test_tsdf.cpp
  opencv_test_rgbd.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_rgbd.exe
  test_main.cpp
  test_static_saliency_spectral_residual.cpp
  opencv_test_saliency.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_saliency.exe
  test_main.cpp
  test_shape.cpp
  opencv_test_shape.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_shape.exe
  test_block_matching.cpp
  test_descriptors.cpp
  test_main.cpp
  test_qds_matching.cpp
  opencv_test_stereo.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_stereo.exe
  test_warpers.cpp
  test_blenders.cpp
  test_blenders.cuda.cpp
  test_exposure_compensate.cpp
  test_main.cpp
  test_matchers.cpp
  test_reprojection.cpp
  test_stitcher.cpp
  test_wave_correction.cpp
  opencv_test_stitching.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_stitching.exe
  test_faps.cpp
  test_getProjPixel.cpp
  test_main.cpp
  test_plane.cpp
  opencv_test_structured_light.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_structured_light.exe
  test_main.cpp
  test_superres.cpp
  opencv_test_superres.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_superres.exe
  test_detection.cpp
  test_detection_swt.cpp
  test_main.cpp
  opencv_test_text.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_text.exe
  test_aukf.cpp
  test_main.cpp
  test_trackerParametersIO.cpp
  test_trackers.cpp
  test_ukf.cpp
  opencv_test_tracking.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_tracking.exe
  test_bgfg_mog2.cpp
  test_dis.cpp
  test_optflow_farneback.cpp
  test_OF_accuracy.cpp
  test_OF_reproducibility.cpp
  test_accum.cpp
  test_camshift.cpp
  test_ecc.cpp
  test_estimaterigid.cpp
  test_kalman.cpp
  test_main.cpp
  test_trackers.cpp
  test_optflowpyrlk.cpp
  test_optflowpyrlk.cpp
  opencv_test_video.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_video.exe
  test_audio.cpp
  test_camera.cpp
  test_container_avi.cpp
  test_dynamic.cpp
  test_ffmpeg.cpp
  test_gstreamer.cpp
  test_main.cpp
  test_mfx.cpp
  test_microphone.cpp
  test_plugins.cpp
  test_video_io.cpp
  opencv_test_videoio.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_videoio.exe
  test_main.cpp
  test_motion_estimation.cpp
  test_stabilizer.cpp
  opencv_test_videostab.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_videostab.exe
  test_main.cpp
  test_qrcode.cpp
  opencv_test_wechat_qrcode.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_wechat_qrcode.exe
  test_detectors.cpp
  test_features2d.cpp
  test_gms_matcher.cpp
  test_keypoints.cpp
  test_logos_matcher.cpp
  test_main.cpp
  test_rotation_and_scale_invariance.cpp
  test_surf.cuda.cpp
  test_surf.ocl.cpp
  opencv_test_xfeatures2d.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_xfeatures2d.exe
  test_adaptive_manifold.cpp
  test_adaptive_manifold_ref_impl.cpp
  test_anisodiff.cpp
  test_bilateral_texture_filter.cpp
  test_deriche_filter.cpp
  test_disparity_wls_filter.cpp
  test_domain_transform.cpp
  test_edgeboxes.cpp
  test_edgepreserving_filter.cpp
  test_fast_hough_transform.cpp
  test_fbs_filter.cpp
  test_fgs_filter.cpp
  test_fld.cpp
  test_fourier_descriptors.cpp
  test_guided_filter.cpp
  test_joint_bilateral_filter.cpp
  test_l0_smooth.cpp
  test_main.cpp
  test_matchcolortemplate.cpp
  test_niblack_threshold.cpp
  test_radon_transform.cpp
  test_ridge_detection_filter.cpp
  test_rolling_guidance_filter.cpp
  test_run_length_morphology.cpp
  test_scansegment.cpp
  test_slic.cpp
  test_sparse_match_interpolator.cpp
  test_structured_edge_detection.cpp
  test_thinning.cpp
  test_weighted_median_filter.cpp
  opencv_test_ximgproc.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_ximgproc.exe
  dct_image_denoising.cpp
  simple_color_balance.cpp
  test_denoise_bm3d.cpp
  test_grayworld.cpp
  test_hdr.cpp
  test_inpainting.cpp
  test_learning_based_color_balance.cpp
  test_main.cpp
  test_oil_painting.cpp
  opencv_test_xphoto.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_test_xphoto.exe
  opencv_version.cpp
  opencv_version.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_version.exe
  opencv_version.cpp
  opencv_version_win32.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_version_win32.exe
  opencv_visualisation.cpp
  opencv_visualisation.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_visualisation.exe
  waldboost_detector.cpp
  opencv_waldboost_detector.vcxproj -> D:\build\opencv\vs_base\bin\Release\opencv_waldboost_detector.exe
  -- Install configuration: "release"
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/ippicv-readme.htm
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/ippicv-EULA.rtf
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/ippicv-third-party-programs.txt
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/ippiw-support.txt
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/ippiw-third-party-programs.txt
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/ippiw-EULA.rtf
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/opencl-headers-LICENSE.txt
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/ade-LICENSE
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/ffmpeg-license.txt
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/ffmpeg-readme.txt
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cvconfig.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/opencv_modules.hpp
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/lib/OpenCVModules.cmake
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/lib/OpenCVModules-release.cmake
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/lib/OpenCVConfig-version.cmake
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/lib/OpenCVConfig.cmake
  -- Installing: D:/build/opencv/vs_base/install/./OpenCVConfig-version.cmake
  -- Installing: D:/build/opencv/vs_base/install/./OpenCVConfig.cmake
  -- Installing: D:/build/opencv/vs_base/install/./LICENSE
  -- Installing: D:/build/opencv/vs_base/install/./setup_vars_opencv4.cmd
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/zlib-README
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/libjpeg-turbo-README.md
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/libjpeg-turbo-LICENSE.md
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/libjpeg-turbo-README.ijg
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/libtiff-COPYRIGHT
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/libopenjp2-README.md
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/libopenjp2-LICENSE
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/libpng-LICENSE
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/libpng-README
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/openexr-LICENSE
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/openexr-AUTHORS.ilmbase
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/openexr-AUTHORS.openexr
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/protobuf-LICENSE
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/protobuf-README.md
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/quirc-LICENSE
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/ittnotify-LICENSE.BSD
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/ittnotify-LICENSE.GPL
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/opencv.hpp
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_core.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_core.exe
  -- Installing: D:/build/opencv/vs_base/install/etc/licenses/SoftFloat-COPYING.txt
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_cudaarithm.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_cudaarithm.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_flann.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_imgproc.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_imgproc.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_intensity_transform.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/intensity_transform/example_intensity_transform_intensity_transform.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/intensity_transform/intensity_transform.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/intensity_transform
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_ml.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_phase_unwrapping.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/phase_unwrapping/example_phase_unwrapping_unwrap.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/phase_unwrapping/unwrap.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/phase_unwrapping
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/plot/example_plot_plot_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/plot/plot_demo.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/plot
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_quality.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/quality/example_quality_brisque_eval_tid2008.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/quality/example_quality_brisque_trainer_livedb.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/quality/brisque_eval_tid2008.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/quality/brisque_model_live.yml
  -- Installing: D:/build/opencv/vs_base/install/samples/quality/brisque_range_live.yml
  -- Installing: D:/build/opencv/vs_base/install/samples/quality/brisque_trainer_livedb.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/quality
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_reg.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_reg.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/reg/example_reg_map_test.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/reg/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/reg/LR_05.png
  -- Installing: D:/build/opencv/vs_base/install/samples/reg/LR_06.png
  -- Installing: D:/build/opencv/vs_base/install/samples/reg/home.png
  -- Installing: D:/build/opencv/vs_base/install/samples/reg/map_test.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/reg/reg_shift.py
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/reg
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/surface_matching/example_surface_matching_ppf_load_match.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/surface_matching/example_surface_matching_ppf_normal_computation.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/surface_matching/ppf_icp.py
  -- Installing: D:/build/opencv/vs_base/install/samples/surface_matching/ppf_load_match.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/surface_matching/ppf_load_match.py
  -- Installing: D:/build/opencv/vs_base/install/samples/surface_matching/ppf_normal_computation.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/surface_matching/data
  -- Installing: D:/build/opencv/vs_base/install/samples/surface_matching/data/parasaurolophus_6700.ply
  -- Installing: D:/build/opencv/vs_base/install/samples/surface_matching/data/parasaurolophus_low_normals2.ply
  -- Installing: D:/build/opencv/vs_base/install/samples/surface_matching/data/rs1_normals.ply
  -- Installing: D:/build/opencv/vs_base/install/samples/surface_matching/data/rs22_proc2.ply
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_cudafilters.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_cudafilters.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_cudaimgproc.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_cudaimgproc.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cudaimgproc/example_cudaimgproc_connected_components.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/cudaimgproc/connected_components.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/cudaimgproc
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_cudawarping.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_cudawarping.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_dnn.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_dnn.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_dnn_superres.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_dnn_superres.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn_superres/example_dnn_superres_dnn_superres.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn_superres/example_dnn_superres_dnn_superres_benchmark_quality.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn_superres/example_dnn_superres_dnn_superres_benchmark_time.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn_superres/example_dnn_superres_dnn_superres_multioutput.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn_superres/example_dnn_superres_dnn_superres_video.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_superres/butterfly.png
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_superres/dnn_superres.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_superres/dnn_superres_benchmark_quality.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_superres/dnn_superres_benchmark_time.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_superres/dnn_superres_multioutput.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_superres/dnn_superres_video.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/dnn_superres
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_features2d.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_features2d.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_fuzzy.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/fuzzy/example_fuzzy_fuzzy_filtering.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/fuzzy/example_fuzzy_fuzzy_inpainting.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/fuzzy/fuzzy_filtering.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/fuzzy/fuzzy_inpainting.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/fuzzy/input.png
  -- Installing: D:/build/opencv/vs_base/install/samples/fuzzy/mask1.png
  -- Installing: D:/build/opencv/vs_base/install/samples/fuzzy/mask2.png
  -- Installing: D:/build/opencv/vs_base/install/samples/fuzzy/mask3.png
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/fuzzy
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/hfs/example_hfs_example.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/hfs/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/hfs/example.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/hfs/data
  -- Installing: D:/build/opencv/vs_base/install/samples/hfs/data/000.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/hfs/data/001.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/hfs/data/002.jpg
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_imgcodecs.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_imgcodecs.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_line_descriptor.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_line_descriptor.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_compute_descriptors.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_knn_matching.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_lines_extraction.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_lsd_lines_extraction.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_matching.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_radius_matching.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/line_descriptor/compute_descriptors.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/line_descriptor/knn_matching.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/line_descriptor/lines_extraction.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/line_descriptor/lsd_lines_extraction.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/line_descriptor/matching.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/line_descriptor/radius_matching.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/line_descriptor
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_photo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_photo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_saliency.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/saliency/example_saliency_computeSaliency.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/saliency/computeSaliency.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/saliency/ObjectnessTrainedModel
  -- Installing: D:/build/opencv/vs_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8HSV.idx.yml.gz
  -- Installing: D:/build/opencv/vs_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8HSV.wS1.yml.gz
  -- Installing: D:/build/opencv/vs_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8HSV.wS2.yml.gz
  -- Installing: D:/build/opencv/vs_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8I.idx.yml.gz
  -- Installing: D:/build/opencv/vs_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8I.wS1.yml.gz
  -- Installing: D:/build/opencv/vs_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8I.wS2.yml.gz
  -- Installing: D:/build/opencv/vs_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8MAXBGR.idx.yml.gz
  -- Installing: D:/build/opencv/vs_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8MAXBGR.wS1.yml.gz
  -- Installing: D:/build/opencv/vs_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8MAXBGR.wS2.yml.gz
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_text.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/text/example_text_character_recognition.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/text/example_text_cropped_word_recognition.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/text/example_text_dictnet_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/text/example_text_end_to_end_recognition.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/text/example_text_segmented_word_recognition.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/text/example_text_text_recognition_cnn.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/text/example_text_textbox_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/text/example_text_textdetection.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/text/example_text_textdetection_swt.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/text/example_text_webcam_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/text/OCRBeamSearch_CNN_model_data.xml.gz
  -- Installing: D:/build/opencv/vs_base/install/samples/text/OCRHMM_knn_model_data.xml.gz
  -- Installing: D:/build/opencv/vs_base/install/samples/text/OCRHMM_transitions_table.xml
  -- Installing: D:/build/opencv/vs_base/install/samples/text/character_recognition.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/text/cropped_word_recognition.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/text/deeptextdetection.py
  -- Installing: D:/build/opencv/vs_base/install/samples/text/detect_er_chars.py
  -- Installing: D:/build/opencv/vs_base/install/samples/text/dictnet_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/text/end_to_end_recognition.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext01.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext02.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext03.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext04.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext05.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext06.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_char01.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_char02.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_char03.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_segmented_word01.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_segmented_word01_mask.png
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_segmented_word02.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_segmented_word02_mask.png
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_segmented_word03.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_segmented_word03_mask.png
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_segmented_word04.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_segmented_word04_mask.png
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_segmented_word05.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_segmented_word05_mask.png
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_word01.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_word02.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_word03.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/scenetext_word04.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/text/segmented_word_recognition.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/text/text_recognition_cnn.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/text/textbox.prototxt
  -- Installing: D:/build/opencv/vs_base/install/samples/text/textbox_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/text/textdetection.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/text/textdetection.py
  -- Installing: D:/build/opencv/vs_base/install/samples/text/textdetection_swt.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/text/trained_classifierNM1.xml
  -- Installing: D:/build/opencv/vs_base/install/samples/text/trained_classifierNM2.xml
  -- Installing: D:/build/opencv/vs_base/install/samples/text/trained_classifier_erGrouping.xml
  -- Installing: D:/build/opencv/vs_base/install/samples/text/webcam_demo.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/text
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_videoio.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_videoio.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_videoio_ffmpeg460_64.dll
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_wechat_qrcode.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/wechat_qrcode/example_wechat_qrcode_qrcode_example.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/wechat_qrcode/qrcode.py
  -- Installing: D:/build/opencv/vs_base/install/samples/wechat_qrcode/qrcode_example.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/wechat_qrcode
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_xphoto.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_xphoto.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xphoto/example_xphoto_bm3d_image_denoising.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xphoto/example_xphoto_color_balance.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xphoto/example_xphoto_dct_image_denoising.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xphoto/example_xphoto_inpainting.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xphoto/example_xphoto_oil.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/xphoto/bm3d_image_denoising.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/xphoto/color_balance.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/xphoto/color_balance_benchmark.py
  -- Installing: D:/build/opencv/vs_base/install/samples/xphoto/dct_image_denoising.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/xphoto/inpainting.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/xphoto/learn_color_balance.py
  -- Installing: D:/build/opencv/vs_base/install/samples/xphoto/oil.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/xphoto
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_barcode.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/barcode/example_barcode_barcode.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/barcode/barcode.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/barcode
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_calib3d.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_calib3d.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_cudacodec.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_cudacodec.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_cudafeatures2d.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_cudafeatures2d.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_cudastereo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_cudastereo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_ar_hmdb.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_ar_hmdb_benchmark.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_ar_sports.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_fr_adience.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_fr_lfw.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_fr_lfw_benchmark.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_gr_chalearn.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_gr_skig.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_hpe_humaneva.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_hpe_parse.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_ir_affine.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_ir_robot.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_is_bsds.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_is_weizmann.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_msm_epfl.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_msm_middlebury.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_or_imagenet.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_or_mnist.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_or_pascal.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_or_sun.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_pd_caltech.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_pd_inria.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_slam_kitti.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_slam_tumindoor.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_sr_bsds.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_sr_div2k.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_sr_general100.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_tr_chars.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_tr_chars_benchmark.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_tr_icdar.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_tr_icdar_benchmark.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_tr_svt.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_tr_svt_benchmark.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/datasets/example_datasets_track_vot.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/ar_hmdb.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/ar_hmdb_benchmark.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/ar_sports.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/fr_adience.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/fr_lfw.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/fr_lfw_benchmark.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/gr_chalearn.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/gr_skig.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/hpe_humaneva.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/hpe_parse.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/ir_affine.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/ir_robot.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/is_bsds.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/is_weizmann.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/msm_epfl.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/msm_middlebury.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/or_imagenet.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/or_mnist.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/or_pascal.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/or_sun.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/pd_caltech.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/pd_inria.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/slam_kitti.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/slam_tumindoor.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/sr_bsds.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/sr_div2k.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/sr_general100.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/tr_chars.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/tr_chars_benchmark.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/tr_icdar.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/tr_icdar_benchmark.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/tr_svt.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/tr_svt_benchmark.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/datasets/track_vot.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/datasets
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_highgui.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_mcc.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/mcc/example_mcc_chart_detection.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/mcc/example_mcc_chart_detection_with_network.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/mcc/example_mcc_color_correction_model.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/mcc/chart_detection.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/mcc/chart_detection_with_network.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/mcc/color_correction_model.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/mcc
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_objdetect.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_objdetect.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_rapid.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/rapid/track_marker.py
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/rapid
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_rgbd.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_rgbd.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/rgbd/example_rgbd_colored_kinfu_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/rgbd/example_rgbd_dynafu_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/rgbd/example_rgbd_kinfu_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/rgbd/example_rgbd_large_kinfu_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/rgbd/example_rgbd_linemod.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/rgbd/example_rgbd_odometry_evaluation.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/rgbd/colored_kinfu_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/rgbd/dynafu_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/rgbd/io_utils.hpp
  -- Installing: D:/build/opencv/vs_base/install/samples/rgbd/kinfu_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/rgbd/kinfu_demo.py
  -- Installing: D:/build/opencv/vs_base/install/samples/rgbd/large_kinfu_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/rgbd/linemod.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/rgbd/odometry_evaluation.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/rgbd
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_shape.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/shape/example_shape_shape_example.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/shape_example.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/1.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/10.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/11.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/12.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/13.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/14.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/15.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/16.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/17.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/18.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/19.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/2.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/20.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/3.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/4.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/5.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/6.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/7.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/8.png
  -- Installing: D:/build/opencv/vs_base/install/samples/shape/data/shape_sample/9.png
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_structured_light.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/structured_light/example_structured_light_cap_pattern.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/structured_light/example_structured_light_capsinpattern.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/structured_light/example_structured_light_pointcloud.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/structured_light/example_structured_light_projectorcalibration.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/structured_light/cap_pattern.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/structured_light/capsinpattern.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/structured_light/pointcloud.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/structured_light/projectorcalibration.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/structured_light
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_video.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_video.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_xfeatures2d.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_xfeatures2d.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_bagofwords_classification.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_gms_matcher.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_pct_signatures.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_pct_webcam.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_shape_transformation.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_surf_matcher.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_video_homography.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/xfeatures2d/bagofwords_classification.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/xfeatures2d/export-boostdesc.py
  -- Installing: D:/build/opencv/vs_base/install/samples/xfeatures2d/gms_matcher.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/xfeatures2d/pct_signatures.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/xfeatures2d/pct_webcam.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/xfeatures2d/shape_transformation.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/xfeatures2d/surf_matcher.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/xfeatures2d/video_homography.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/xfeatures2d
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_ximgproc.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_ximgproc.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_brightedgesexample.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_color_match_template.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_colorize.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_deriche_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_disparity_filtering.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_edgeboxes_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_edgepreserving_filter_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_fast_hough_transform.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_filterdemo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_fld_lines.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_fourier_descriptors_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_graphsegmentation_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_live_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_niblack_thresholding.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_paillou_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_peilin.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_radon_transform_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_run_length_morphology_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_seeds.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_selectivesearchsegmentation_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_slic.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_structured_edge_detection.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ximgproc/example_ximgproc_thinning.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/brightedgesexample.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/color_match_template.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/colorize.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/dericheSample.py
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/deriche_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/disparity_filtering.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/edge_drawing.py
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/edgeboxes_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/edgeboxes_demo.py
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/edgepreserving_filter_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/fast_hough_transform.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/filterdemo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/findredlinedpolygonfromgooglemaps.py
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/fld_lines.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/fourier_descriptors_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/fourier_descriptors_demo.py
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/graphsegmentation_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/live_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/niblack_thresholding.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/paillou_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/peilin.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/peilin_plane.png
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/peilin_shape.png
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/polygonstanfordoutput.png
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/radon_transform_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/radon_transform_demo.py
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/run_length_morphology_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/seeds.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/selectivesearchsegmentation_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/selectivesearchsegmentation_demo.py
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/slic.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/stanford.png
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/structured_edge_detection.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ximgproc/thinning.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/ximgproc
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_aruco.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_aruco.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_aruco_dict_utils.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_calibrate_camera.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_calibrate_camera_charuco.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_create_board.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_create_board_charuco.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_create_diamond.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_create_marker.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_detect_board.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_detect_board_charuco.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_detect_diamonds.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_detect_markers.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/aruco/example_aruco_tutorial_charuco_create_detect.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/aruco_dict_utils.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/aruco_samples_utility.hpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/calibrate_camera.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/calibrate_camera_charuco.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/create_board.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/create_board_charuco.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/create_diamond.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/create_marker.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/detect_board.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/detect_board_charuco.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/detect_diamonds.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/detect_markers.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/detector_params.yml
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/tutorial_camera_charuco.yml
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/tutorial_camera_params.yml
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/tutorial_charuco_create_detect.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/aruco/tutorial_dict.yml
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/aruco
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_bgsegm.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/bgsegm/example_bgsegm_bgfg.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/bgsegm/bgfg.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/bgsegm/evaluation.py
  -- Installing: D:/build/opencv/vs_base/install/samples/bgsegm/viz.py
  -- Installing: D:/build/opencv/vs_base/install/samples/bgsegm/viz_synthetic_seq.py
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/bgsegm
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_bioinspired.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_bioinspired.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/bioinspired/example_bioinspired_OpenEXRimages_HDR_Retina_toneMapping.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/bioinspired/example_bioinspired_retinaDemo.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/bioinspired/OpenEXRimages_HDR_Retina_toneMapping.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/bioinspired/retinaDemo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/bioinspired/cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/bioinspired/cpp/OpenEXRimages_HDR_Retina_toneMapping.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/bioinspired/cpp/OpenEXRimages_HDR_Retina_toneMapping_video.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/bioinspired/cpp/retinaDemo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/bioinspired/cpp/tutorial_code
  -- Installing: D:/build/opencv/vs_base/install/samples/bioinspired/cpp/tutorial_code/bioinspired
  -- Installing: D:/build/opencv/vs_base/install/samples/bioinspired/cpp/tutorial_code/bioinspired/retina_tutorial.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/bioinspired/ocl
  -- Installing: D:/build/opencv/vs_base/install/samples/bioinspired/ocl/retina_ocl.cpp
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ccalib/example_ccalib_multi_cameras_calibration.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ccalib/example_ccalib_omni_calibration.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ccalib/example_ccalib_omni_stereo_calibration.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ccalib/example_ccalib_random_pattern_calibration.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/ccalib/example_ccalib_random_pattern_generator.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/ccalib/multi_cameras_calibration.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ccalib/omni_calibration.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ccalib/omni_stereo_calibration.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ccalib/random_pattern_calibration.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/ccalib/random_pattern_generator.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/ccalib
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_cudabgsegm.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_cudabgsegm.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_cudalegacy.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_cudalegacy.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_cudaobjdetect.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_cudaobjdetect.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn_objdetect/example_dnn_objdetect_image_classification.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn_objdetect/example_dnn_objdetect_obj_detect.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_objdetect/image_classification.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_objdetect/obj_detect.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_objdetect/data
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_objdetect/data/README.md
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_objdetect/data/SqueezeDet_deploy.prototxt
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_objdetect/data/SqueezeDet_solver.prototxt
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_objdetect/data/SqueezeDet_train_test.prototxt
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_objdetect/data/SqueezeNet_deploy.prototxt
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_objdetect/data/SqueezeNet_solver.prototxt
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn_objdetect/data/SqueezeNet_train_test.prototxt
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dpm/example_dpm_cascade_detect_camera.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dpm/example_dpm_cascade_detect_sequence.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/dpm/cascade_detect_camera.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dpm/cascade_detect_sequence.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dpm/data
  -- Installing: D:/build/opencv/vs_base/install/samples/dpm/data/inriaperson.xml
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_face.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_facemark_demo_aam.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_facemark_demo_lbf.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_facemark_lbf_fitting.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_facerec_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_facerec_eigenfaces.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_facerec_fisherfaces.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_facerec_lbph.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_facerec_save_load.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_facerec_video.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_mace_webcam.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_sampleDetectLandmarks.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_sampleDetectLandmarksvideo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_sample_face_swapping.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_sample_train_landmark_detector.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_sample_train_landmark_detector2.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/face/example_face_samplewriteconfigfile.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/face/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/face/Facemark.java
  -- Installing: D:/build/opencv/vs_base/install/samples/face/facemark_demo_aam.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/facemark_demo_lbf.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/facemark_lbf_fitting.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/facerec_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/facerec_eigenfaces.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/facerec_fisherfaces.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/facerec_lbph.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/facerec_save_load.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/facerec_video.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/landmarks_demo.py
  -- Installing: D:/build/opencv/vs_base/install/samples/face/mace_webcam.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/sampleDetectLandmarks.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/sampleDetectLandmarksvideo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/sample_config_file.xml
  -- Installing: D:/build/opencv/vs_base/install/samples/face/sample_face_swapping.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/sample_train_landmark_detector.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/sample_train_landmark_detector2.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/samplewriteconfigfile.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/face/etc
  -- Installing: D:/build/opencv/vs_base/install/samples/face/etc/at.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/face/etc/create_csv.py
  -- Installing: D:/build/opencv/vs_base/install/samples/face/etc/crop_face.py
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_gapi.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_gapi.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_api_example.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_draw_example.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_face_detection_mtcnn.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_gaze_estimation.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_infer_ie_onnx_hybrid.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_infer_single_roi.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_infer_ssd_onnx.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_oak_basic_infer.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_oak_copy.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_oak_rgb_camera_encoding.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_oak_small_hetero_pipeline.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_onevpl_infer_single_roi.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_pipeline_modeling_tool.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_privacy_masking_camera.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_semantic_segmentation.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_slides_blur_gapi.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_slides_sobel_cv.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_slides_sobel_gapi.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gapi/example_gapi_text_detection.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/api_example.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/draw_example.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/face_detection_mtcnn.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/gaze_estimation.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/infer_ie_onnx_hybrid.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/infer_single_roi.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/infer_ssd_onnx.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/oak_basic_infer.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/oak_copy.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/oak_rgb_camera_encoding.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/oak_small_hetero_pipeline.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/onevpl_infer_single_roi.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/pipeline_modeling_tool.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/privacy_masking_camera.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/semantic_segmentation.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/slides_blur_gapi.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/slides_sobel_cv.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/slides_sobel_gapi.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/text_detection.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/data
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/data/config_template.yml
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/pipeline_modeling_tool
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/pipeline_modeling_tool/dummy_source.hpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/pipeline_modeling_tool/pipeline.hpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/pipeline_modeling_tool/pipeline_builder.hpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/pipeline_modeling_tool/test_pipeline_modeling_tool.py
  -- Installing: D:/build/opencv/vs_base/install/samples/gapi/pipeline_modeling_tool/utils.hpp
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_optflow.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_optflow.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/optflow/example_optflow_gpc_evaluate.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/optflow/example_optflow_gpc_train.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/optflow/example_optflow_motempl.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/optflow/example_optflow_optical_flow_evaluation.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/optflow/example_optflow_pcaflow_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/optflow/example_optflow_simpleflow_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/optflow/example_optflow_tvl1_optical_flow.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/optflow/gpc_evaluate.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/optflow/gpc_train.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/optflow/gpc_train_middlebury.py
  -- Installing: D:/build/opencv/vs_base/install/samples/optflow/gpc_train_sintel.py
  -- Installing: D:/build/opencv/vs_base/install/samples/optflow/motempl.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/optflow/motempl.py
  -- Installing: D:/build/opencv/vs_base/install/samples/optflow/optical_flow_benchmark.py
  -- Installing: D:/build/opencv/vs_base/install/samples/optflow/optical_flow_evaluation.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/optflow/pcaflow_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/optflow/simpleflow_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/optflow/tvl1_optical_flow.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/optflow
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_stitching.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_stitching.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_tracking.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_tracking.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_benchmark.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_csrt.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_goturnTracker.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_kcf.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_multiTracker_dataset.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_multitracker.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_tracker.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_tracker_dataset.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_tracking_by_matching.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_tutorial_customizing_cn_tracker.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_tutorial_introduction_to_tracker.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tracking/example_tracking_tutorial_multitracker.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/benchmark.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/csrt.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/goturnTracker.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/kcf.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/multiTracker_dataset.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/multitracker.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/multitracker.py
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/samples_utility.hpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/tracker.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/tracker.py
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/tracker_dataset.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/tracking_by_matching.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/tutorial_customizing_cn_tracker.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/tutorial_introduction_to_tracker.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tracking/tutorial_multitracker.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/tracking
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_cudaoptflow.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_cudaoptflow.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cudaoptflow/example_cudaoptflow_nvidia_optical_flow.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cudaoptflow/example_cudaoptflow_optical_flow.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/cudaoptflow/nvidia_optical_flow.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cudaoptflow/optical_flow.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/cudaoptflow
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_stereo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_stereo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/stereo/example_stereo_dense_disparity.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/stereo/example_stereo_export_param_file.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/stereo/example_stereo_sample.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/stereo/dense_disparity.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/stereo/export_param_file.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/stereo/sample.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/stereo/sample_quasi_dense.py
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/stereo
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_superres.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_perf_superres.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_videostab.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/videostab/example_videostab_videostab.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/videostab/videostab.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/videostab
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/lib/opencv_world460.lib
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_world460.dll
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/calib3d.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/calib3d/calib3d.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/calib3d/calib3d_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/affine.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/async.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/base.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/bindings_utils.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/bufferpool.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/check.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/core.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/core_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda.inl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/block.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/border_interpolate.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/color.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/common.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/datamov_utils.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/detail/color_detail.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/detail/reduce.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/detail/reduce_key_val.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/detail/transform_detail.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/detail/type_traits_detail.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/detail/vec_distance_detail.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/dynamic_smem.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/emulation.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/filters.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/funcattrib.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/functional.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/limits.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/reduce.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/saturate_cast.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/scan.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/simd_functions.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/transform.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/type_traits.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/utility.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/vec_distance.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/vec_math.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/vec_traits.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/warp.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/warp_reduce.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda/warp_shuffle.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda_stream_accessor.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cuda_types.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cv_cpu_dispatch.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cv_cpu_helper.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cvdef.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cvstd.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cvstd.inl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/cvstd_wrapper.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/detail/async_promise.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/detail/dispatch_helper.impl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/detail/exception_ptr.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/directx.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/dualquaternion.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/dualquaternion.inl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/eigen.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/fast_math.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/hal.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/interface.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_avx.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_avx512.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_cpp.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_forward.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_msa.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_neon.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_rvv.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_rvv071.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_sse.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_sse_em.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_vsx.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/intrin_wasm.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/msa_macros.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/hal/simd_utils.impl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/mat.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/mat.inl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/matx.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/neon_utils.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/ocl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/ocl_genbase.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/ocl_defs.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/opencl_info.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/opencl_svm.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_clblas.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_clfft.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_core.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/opencl_clblas.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/opencl_clfft.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/opencl_core.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/opencl_gl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/opencl_gl_wrappers.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/opencl_svm_20.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/opencl_svm_definitions.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opencl/runtime/opencl_svm_hsa_extension.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/opengl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/operations.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/optim.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/ovx.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/parallel/backend/parallel_for.openmp.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/parallel/backend/parallel_for.tbb.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/parallel/parallel_backend.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/persistence.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/quaternion.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/quaternion.inl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/saturate.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/simd_intrinsics.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/softfloat.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/sse_utils.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/traits.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/types.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/types_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/utility.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/utils/allocator_stats.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/utils/allocator_stats.impl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/utils/filesystem.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/utils/fp_control_utils.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/utils/instrumentation.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/utils/logger.defines.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/utils/logger.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/utils/logtag.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/utils/tls.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/utils/trace.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/va_intel.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/version.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core/vsx_utils.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn/all_layers.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn/dict.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn/dnn.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn/dnn.inl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn/layer.details.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn/layer.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn/shape_utils.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn/utils/debug_utils.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn/utils/inference_engine.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn/version.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/features2d.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/features2d/features2d.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/features2d/hal/interface.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/all_indices.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/allocator.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/any.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/autotuned_index.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/composite_index.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/config.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/defines.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/dist.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/dummy.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/dynamic_bitset.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/flann.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/flann_base.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/general.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/ground_truth.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/hdf5.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/heap.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/hierarchical_clustering_index.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/index_testing.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/kdtree_index.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/kdtree_single_index.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/kmeans_index.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/linear_index.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/logger.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/lsh_index.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/lsh_table.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/matrix.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/miniflann.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/nn_index.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/object_factory.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/params.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/random.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/result_set.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/sampling.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/saving.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/simplex_downhill.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/flann/timer.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/core.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/cpu/core.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/cpu/gcpukernel.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/cpu/imgproc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/cpu/stereo.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/cpu/video.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/fluid/core.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/fluid/gfluidbuffer.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/fluid/gfluidkernel.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/fluid/imgproc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/garg.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/garray.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gasync_context.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gcall.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gcommon.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gcompiled.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gcompiled_async.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gcompoundkernel.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gcomputation.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gcomputation_async.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gframe.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gkernel.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gmat.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gmetaarg.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gopaque.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gproto.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gpu/core.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gpu/ggpukernel.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gpu/imgproc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gscalar.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gstreaming.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gtransform.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gtype_traits.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/gtyped.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/imgproc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/infer.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/infer/bindings_ie.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/infer/ie.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/infer/onnx.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/infer/parsers.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/media.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/oak/infer.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/oak/oak.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/ocl/core.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/ocl/goclkernel.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/ocl/imgproc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/opencv_includes.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/operators.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/own/assert.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/own/convert.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/own/cvdefs.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/own/exports.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/own/mat.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/own/saturate.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/own/scalar.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/own/types.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/plaidml/core.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/plaidml/gplaidmlkernel.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/plaidml/plaidml.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/python/python.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/render.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/render/render.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/render/render_types.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/rmat.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/s11n.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/s11n/base.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/stereo.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/cap.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/desync.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/format.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/gstreamer/gstreamerpipeline.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/gstreamer/gstreamersource.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/meta.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/onevpl/accel_types.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/onevpl/cfg_params.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/onevpl/data_provider_interface.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/onevpl/device_selector_interface.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/onevpl/source.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/source.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/streaming/sync.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/util/any.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/util/compiler_hints.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/util/copy_through_move.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/util/optional.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/util/throw.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/util/type_traits.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/util/util.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/util/variant.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/gapi/video.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/highgui.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/highgui/highgui.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/highgui/highgui_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgcodecs.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgcodecs/imgcodecs.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgcodecs/imgcodecs_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgcodecs/ios.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgcodecs/legacy/constants_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgcodecs/macosx.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgproc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgproc/bindings.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgproc/detail/gcgraph.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgproc/hal/hal.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgproc/hal/interface.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgproc/imgproc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgproc/imgproc_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgproc/segmentation.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/imgproc/types_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ml.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ml/ml.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ml/ml.inl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/objdetect.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/objdetect/detection_based_tracker.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/objdetect/face.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/objdetect/objdetect.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/photo.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/photo/cuda.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/photo/legacy/constants_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/photo/photo.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/autocalib.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/blenders.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/camera.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/exposure_compensate.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/matchers.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/motion_estimators.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/seam_finders.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/timelapsers.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/util.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/util_inl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/warpers.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/detail/warpers_inl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stitching/warpers.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/video.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/video/background_segm.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/video/detail/tracking.detail.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/video/legacy/constants_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/video/tracking.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/video/video.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videoio.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videoio/cap_ios.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videoio/legacy/constants_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videoio/registry.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videoio/videoio.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videoio/videoio_c.h
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/world.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/aruco.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/aruco/charuco.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/aruco/dictionary.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/barcode.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/bgsegm.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/bioinspired.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/bioinspired/bioinspired.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/bioinspired/retina.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/bioinspired/retinafasttonemapping.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/bioinspired/transientareassegmentationmodule.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ccalib.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ccalib/multicalib.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ccalib/omnidir.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ccalib/randpattern.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudaarithm.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudabgsegm.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudacodec.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudafeatures2d.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudafilters.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudaimgproc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudalegacy.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudalegacy/NCV.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudalegacy/NCVBroxOpticalFlow.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudalegacy/NCVHaarObjectDetection.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudalegacy/NCVPyramid.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudalegacy/NPP_staging.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudaobjdetect.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudaoptflow.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudastereo.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudawarping.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/block/block.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/block/detail/reduce.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/block/detail/reduce_key_val.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/block/dynamic_smem.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/block/reduce.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/block/scan.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/block/vec_distance.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/common.hpp
  -- Up-to-date: D:/build/opencv/vs_base/install/include/opencv2/cudev/common.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/expr/binary_func.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/expr/binary_op.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/expr/color.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/expr/deriv.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/expr/expr.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/expr/per_element_func.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/expr/reduction.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/expr/unary_func.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/expr/unary_op.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/expr/warping.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/functional/color_cvt.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/functional/detail/color_cvt.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/functional/functional.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/functional/tuple_adapter.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/copy.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/copy.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/histogram.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/integral.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/minmaxloc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/pyr_down.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/pyr_up.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/reduce.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/reduce_to_column.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/reduce_to_row.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/split_merge.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/transform.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/detail/transpose.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/histogram.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/integral.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/pyramids.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/reduce.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/reduce_to_vec.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/split_merge.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/transform.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/grid/transpose.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/constant.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/deriv.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/detail/gpumat.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/extrapolation.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/glob.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/gpumat.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/interpolation.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/lut.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/mask.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/remap.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/resize.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/texture.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/traits.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/transform.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/warping.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/ptr2d/zip.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/util/atomic.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/util/detail/tuple.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/util/detail/type_traits.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/util/limits.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/util/saturate_cast.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/util/simd_functions.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/util/tuple.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/util/type_traits.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/util/vec_math.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/util/vec_traits.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/warp/detail/reduce.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/warp/detail/reduce_key_val.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/warp/reduce.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/warp/scan.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/warp/shuffle.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/cudev/warp/warp.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/ar_hmdb.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/ar_sports.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/dataset.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/fr_adience.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/fr_lfw.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/gr_chalearn.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/gr_skig.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/hpe_humaneva.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/hpe_parse.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/ir_affine.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/ir_robot.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/is_bsds.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/is_weizmann.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/msm_epfl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/msm_middlebury.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/or_imagenet.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/or_mnist.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/or_pascal.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/or_sun.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/pd_caltech.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/pd_inria.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/slam_kitti.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/slam_tumindoor.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/sr_bsds.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/sr_div2k.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/sr_general100.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/tr_chars.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/tr_icdar.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/tr_svt.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/track_alov.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/track_vot.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/datasets/util.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/core_detect.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dnn_superres.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/dpm.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/face.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/face/bif.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/face/face_alignment.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/face/facemark.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/face/facemarkAAM.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/face/facemarkLBF.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/face/facemark_train.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/face/facerec.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/face/mace.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/face/predict_collector.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/fuzzy.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/fuzzy/fuzzy_F0_math.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/fuzzy/fuzzy_F1_math.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/fuzzy/fuzzy_image.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/fuzzy/types.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/hfs.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/intensity_transform.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/line_descriptor.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/line_descriptor/descriptor.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/mcc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/mcc/ccm.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/mcc/checker_detector.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/mcc/checker_model.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/optflow.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/optflow/motempl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/optflow/pcaflow.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/optflow/rlofflow.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/optflow/sparse_matching_gpc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/phase_unwrapping.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/phase_unwrapping/histogramphaseunwrapping.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/phase_unwrapping/phase_unwrapping.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/plot.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/quality.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/quality/quality_utils.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/quality/qualitybase.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/quality/qualitybrisque.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/quality/qualitygmsd.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/quality/qualitymse.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/quality/qualitypsnr.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/quality/qualityssim.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/rapid.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/reg/map.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/reg/mapaffine.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/reg/mapper.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/reg/mappergradaffine.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/reg/mappergradeuclid.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/reg/mappergradproj.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/reg/mappergradshift.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/reg/mappergradsimilar.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/reg/mapperpyramid.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/reg/mapprojec.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/reg/mapshift.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/rgbd.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/rgbd/colored_kinfu.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/rgbd/depth.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/rgbd/detail/pose_graph.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/rgbd/dynafu.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/rgbd/intrinsics.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/rgbd/kinfu.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/rgbd/large_kinfu.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/rgbd/linemod.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/rgbd/volume.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/saliency.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/saliency/saliencyBaseClasses.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/saliency/saliencySpecializedClasses.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/shape.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/shape/emdL1.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/shape/hist_cost.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/shape/shape.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/shape/shape_distance.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/shape/shape_transformer.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stereo.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stereo/descriptor.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stereo/quasi_dense_stereo.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/stereo/stereo.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/structured_light.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/structured_light/graycodepattern.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/structured_light/sinusoidalpattern.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/structured_light/structured_light.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/superres.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/superres/optical_flow.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/surface_matching.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/surface_matching/icp.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/surface_matching/pose_3d.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/surface_matching/ppf_helpers.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/surface_matching/ppf_match_3d.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/surface_matching/t_hash_int.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/text.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/text/erfilter.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/text/ocr.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/text/swt_text_detection.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/text/textDetector.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/tracking.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/tracking/feature.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/tracking/kalman_filters.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/tracking/onlineBoosting.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/tracking/tldDataset.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/tracking/tracking.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/tracking/tracking_by_matching.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/tracking/tracking_internals.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/tracking/tracking_legacy.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/deblurring.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/fast_marching.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/fast_marching_inl.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/frame_source.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/global_motion.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/inpainting.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/log.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/motion_core.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/motion_stabilizing.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/optical_flow.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/outlier_rejection.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/ring_buffer.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/stabilizer.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/videostab/wobble_suppression.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/wechat_qrcode.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/xfeatures2d.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/xfeatures2d/cuda.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/xfeatures2d/nonfree.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/brightedges.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/color_match.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/deriche_filter.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/disparity_filter.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/edge_drawing.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/edge_filter.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/edgeboxes.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/edgepreserving_filter.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/estimated_covariance.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/fast_hough_transform.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/fast_line_detector.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/fourier_descriptors.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/lsc.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/paillou_filter.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/peilin.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/radon_transform.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/ridgefilter.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/run_length_morphology.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/scansegment.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/seeds.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/segmentation.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/slic.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/sparse_match_interpolator.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/structured_edge_detection.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/ximgproc/weighted_median_filter.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/xobjdetect.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/xphoto.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/xphoto/bm3d_image_denoising.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/xphoto/dct_image_denoising.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/xphoto/inpainting.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/xphoto/oilpainting.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/xphoto/tonemap.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/xphoto/white_balance.hpp
  -- Installing: D:/build/opencv/vs_base/install/bin/opencv_waldboost_detector.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/lib/opencv_img_hash460.lib
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_img_hash460.dll
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/img_hash.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/img_hash/average_hash.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/img_hash/block_mean_hash.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/img_hash/color_moment_hash.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/img_hash/img_hash_base.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/img_hash/marr_hildreth_hash.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/img_hash/phash.hpp
  -- Installing: D:/build/opencv/vs_base/install/include/opencv2/img_hash/radial_variance_hash.hpp
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_test_img_hash.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/img_hash/example_img_hash_hash_samples.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/img_hash/hash_samples.cpp
  -- Up-to-date: D:/build/opencv/vs_base/install/samples/img_hash
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_eye.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_eye_tree_eyeglasses.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_frontalcatface.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_frontalcatface_extended.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_frontalface_alt.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_frontalface_alt2.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_frontalface_alt_tree.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_frontalface_default.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_fullbody.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_lefteye_2splits.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_licence_plate_rus_16stages.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_lowerbody.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_profileface.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_righteye_2splits.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_russian_plate_number.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_smile.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/haarcascades/haarcascade_upperbody.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/lbpcascades/lbpcascade_frontalcatface.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/lbpcascades/lbpcascade_frontalface.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/lbpcascades/lbpcascade_frontalface_improved.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/lbpcascades/lbpcascade_profileface.xml
  -- Installing: D:/build/opencv/vs_base/install/etc/lbpcascades/lbpcascade_silverware.xml
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_annotation.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_visualisation.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_interactive-calibration.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_version.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_version_win32.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/bin/opencv_model_diagnostics.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/./CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/./samples_utils.cmake
  -- Installing: D:/build/opencv/vs_base/install/samples/data
  -- Installing: D:/build/opencv/vs_base/install/samples/data/aero1.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/aero3.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/aloeGT.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/aloeL.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/aloeR.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/alphabet_36.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/data/alphabet_94.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/data/apple.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/baboon.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/basketball1.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/basketball2.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/Blender_Suzanne1.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/Blender_Suzanne2.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/blox.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/board.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/box.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/box_in_scene.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/building.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/butterfly.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/calibration.yml
  -- Installing: D:/build/opencv/vs_base/install/samples/data/cards.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/chessboard.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/chicky_512.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/data01.xml
  -- Installing: D:/build/opencv/vs_base/install/samples/data/detect_blob.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/digits.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/dnn
  -- Installing: D:/build/opencv/vs_base/install/samples/data/dnn/action_recongnition_kinetics.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/data/dnn/classification_classes_ILSVRC2012.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/data/dnn/enet-classes.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/data/dnn/object_detection_classes_coco.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/data/dnn/object_detection_classes_pascal_voc.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/data/dnn/object_detection_classes_yolov3.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/data/ela_modified.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/ela_original.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/ellipses.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/essential_mat_data.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/data/fruits.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/gradient.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/graf1.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/graf3.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/H1to3p.xml
  -- Installing: D:/build/opencv/vs_base/install/samples/data/HappyFish.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/home.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/imageTextN.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/imageTextR.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/intrinsics.yml
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left01.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left02.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left03.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left04.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left05.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left06.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left07.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left08.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left09.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left11.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left12.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left13.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left14.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/left_intrinsics.yml
  -- Installing: D:/build/opencv/vs_base/install/samples/data/lena.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/lena_tmpl.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/letter-recognition.data
  -- Installing: D:/build/opencv/vs_base/install/samples/data/leuvenA.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/leuvenB.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/licenseplate_motion.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/LinuxLogo.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/mask.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/Megamind.avi
  -- Installing: D:/build/opencv/vs_base/install/samples/data/Megamind_bugy.avi
  -- Installing: D:/build/opencv/vs_base/install/samples/data/messi5.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/ml.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/notes.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/opencv-logo-white.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/opencv-logo.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/orange.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/pca_test1.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/pic1.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/pic2.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/pic3.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/pic4.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/pic5.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/pic6.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right01.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right02.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right03.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right04.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right05.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right06.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right07.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right08.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right09.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right11.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right12.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right13.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/right14.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/rubberwhale1.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/rubberwhale2.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/smarties.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/squirrel_cls.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/starry_night.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/stereo_calib.xml
  -- Installing: D:/build/opencv/vs_base/install/samples/data/stuff.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/sudoku.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/templ.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/text_defocus.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/text_motion.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/data/tmpl.png
  -- Installing: D:/build/opencv/vs_base/install/samples/data/tree.avi
  -- Installing: D:/build/opencv/vs_base/install/samples/data/vtest.avi
  -- Installing: D:/build/opencv/vs_base/install/samples/data/WindowsLogo.jpg
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/3calibration.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/application_trace.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/asift.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/audio_spectrogram.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/bgfg_segm.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/calibration.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/camshiftdemo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/cloning_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/cloning_gui.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/connected_components.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/contours2.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/convexhull.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/cout_mat.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/create_mask.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/dbt_face_detection.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/delaunay2.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/demhist.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/detect_blob.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/detect_mser.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/dft.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/digits_lenet.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/digits_svm.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/dis_opticalflow.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/distrans.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/drawing.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/edge.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/ela.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/em.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/epipolar_lines.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/essential_mat_reconstr.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/facedetect.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/facial_features.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/falsecolor.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/fback.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/ffilldemo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/filestorage.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/fitellipse.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/flann_search_dataset.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/grabcut.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/image_alignment.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/imagelist_creator.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/imagelist_reader.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/inpaint.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/intelligent_scissors.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/intersectExample.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/kalman.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/kmeans.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/laplace.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/letter_recog.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/lkdemo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/logistic_regression.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/lsd_lines.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/mask_tmpl.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/matchmethod_orb_akaze_brisk.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/minarea.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/morphology2.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/neural_network.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/npr_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/opencv_version.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/pca.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/peopledetect.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/phase_corr.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/points_classifier.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/polar_transforms.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/qrcode.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/segment_objects.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/select3dobj.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/simd_basic.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/smiledetect.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/squares.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/stereo_calib.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/stereo_match.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/stitching.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/stitching_detailed.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/text_skewness_correction.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/train_HOG.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/train_svmsgd.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/travelsalesman.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/tree_engine.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videocapture_audio.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videocapture_audio_combination.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videocapture_basic.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videocapture_camera.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videocapture_gphoto2_autofocus.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videocapture_gstreamer_pipeline.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videocapture_image_sequence.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videocapture_microphone.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videocapture_openni.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videocapture_realsense.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videocapture_starter.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/videowriter_basic.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/warpPerspective_demo.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/cpp/watershed.cpp
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_3calibration.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_application_trace.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_asift.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_audio_spectrogram.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_bgfg_segm.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_calibration.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_camshiftdemo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_cloning_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_cloning_gui.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_connected_components.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_contours2.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_convexhull.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_cout_mat.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_create_mask.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_dbt_face_detection.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_delaunay2.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_demhist.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_detect_blob.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_detect_mser.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_dft.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_digits_lenet.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_digits_svm.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_dis_opticalflow.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_distrans.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_drawing.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_edge.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_ela.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_em.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_epipolar_lines.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_essential_mat_reconstr.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_example.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_facedetect.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_facial_features.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_falsecolor.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_fback.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_ffilldemo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_filestorage.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_fitellipse.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_flann_search_dataset.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_grabcut.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_image_alignment.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_imagelist_creator.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_imagelist_reader.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_inpaint.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_intelligent_scissors.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_intersectExample.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_kalman.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_kmeans.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_laplace.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_letter_recog.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_lkdemo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_logistic_regression.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_lsd_lines.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_mask_tmpl.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_matchmethod_orb_akaze_brisk.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_minarea.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_morphology2.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_neural_network.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_npr_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_opencv_version.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_pca.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_peopledetect.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_phase_corr.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_points_classifier.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_polar_transforms.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_qrcode.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_segment_objects.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_select3dobj.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_simd_basic.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_smiledetect.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_squares.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_stereo_calib.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_stereo_match.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_stitching.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_stitching_detailed.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_text_skewness_correction.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_train_HOG.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_train_svmsgd.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_travelsalesman.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_tree_engine.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_AddingImagesTrackbar.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_BasicLinearTransformsTrackbar.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_EqualizeHist_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_MatchTemplate_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_calcBackProject_Demo1.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_calcBackProject_Demo2.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_calcHist_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_compareHist_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_BasicLinearTransforms.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_HitMiss.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Morphology_1.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Morphology_2.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Pyramids.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Smoothing.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Threshold.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Threshold_inRange.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_anisotropic_image_segmentation.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Drawing_1.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Drawing_2.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_changing_contrast_brightness_image.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Morphology_3.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_motion_deblur_filter.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_out_of_focus_deblur_filter.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_periodic_noise_removing_filter.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_CannyDetector_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Geometric_Transforms_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_HoughCircle_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_HoughLines_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Laplace_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Remap_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_Sobel_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_copyMakeBorder_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_filter2D_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_houghcircles.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_houghlines.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_imageSegmentation.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_findContours_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_generalContours_demo1.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_generalContours_demo2.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_hull_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_moments_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_pointPolygonTest_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_cornerDetector_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_cornerHarris_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_cornerSubPix_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_goodFeaturesToTrack_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_camera_calibration.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_compatibility_test.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_AddingImages.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_discrete_fourier_transform.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_file_input_output.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_how_to_scan_images.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_how_to_use_OpenCV_parallel_for_.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_how_to_use_OpenCV_parallel_for_new.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_mat_mask_operations.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_mat_operations.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_mat_the_basic_image_container.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_univ_intrin.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_AKAZE_match.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_planar_tracking.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_decompose_homography.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_homography_from_camera_displacement.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_panorama_stitching_rotating_camera.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_perspective_correction.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_pose_from_homography.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_SURF_matching_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_SURF_detection_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_SURF_FLANN_matching_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_SURF_FLANN_matching_homography_Demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_age_gender_emotion_recognition.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_api_ref_snippets.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_dynamic_graph_snippets.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_kernel_api_snippets.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_face_beautification.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_porting_anisotropic_image_segmentation_gapi.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_porting_anisotropic_image_segmentation_gapi_fluid.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_security_barrier_camera.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_gpu-basics-similarity.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_gdal-image.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_display_image.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_documentation.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_introduction_windows_vs.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_introduction_to_pca.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_introduction_to_svm.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_non_linear_svms.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_objectDetection.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_decolor.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_hdr_imaging.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_npr_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_cloning_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_cloning_gui.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_core_mat_checkVector.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_core_merge.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_core_reduce.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_core_split.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_core_various.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_imgcodecs_imwrite.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_HoughLinesCircles.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_HoughLinesP.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_HoughLinesPointSet.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_applyColorMap.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_calcHist.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_drawContours.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_segmentation.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_bg_sub.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_camshift.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_meanshift.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_optical_flow.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_optical_flow_dense.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_orbbec_astra.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_video-input-psnr-ssim.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_video-write.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tutorial/example_tutorial_LATCH_match.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_audio.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_audio_combination.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_basic.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_camera.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_gphoto2_autofocus.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_gstreamer_pipeline.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_image_sequence.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_microphone.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_openni.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_realsense.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_starter.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_videowriter_basic.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_warpPerspective_demo.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/cpp/example_cpp_watershed.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/classification.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/colorization.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/common.hpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/custom_layers.hpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/dasiamrpn_tracker.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/face_detect.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/human_parsing.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/object_detection.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/openpose.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/person_reid.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/scene_text_detection.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/scene_text_recognition.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/scene_text_spotting.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/segmentation.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/speech_recognition.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/dnn/text_detection.cpp
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_classification.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_colorization.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_dasiamrpn_tracker.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_face_detect.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_human_parsing.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_object_detection.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_openpose.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_person_reid.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_scene_text_detection.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_scene_text_recognition.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_scene_text_spotting.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_segmentation.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_speech_recognition.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/dnn/example_dnn_text_detection.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/alpha_comp.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/bgfg_segm.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/cascadeclassifier.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/farneback_optical_flow.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/generalized_hough.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/hog.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/houghlines.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/morphology.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/multi.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/pyrlk_optical_flow.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/stereo_match.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/stereo_multi.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/super_resolution.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/surf_keypoint_matcher.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/video_reader.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/gpu/video_writer.cpp
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_alpha_comp.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_bgfg_segm.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_cascadeclassifier.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_farneback_optical_flow.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_generalized_hough.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_hog.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_houghlines.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_morphology.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_multi.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_pyrlk_optical_flow.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_stereo_match.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_stereo_multi.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_super_resolution.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_surf_keypoint_matcher.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_video_reader.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/gpu/example_gpu_video_writer.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/tapi/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/tapi/bgfg_segm.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tapi/camshift.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tapi/clahe.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tapi/dense_optical_flow.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tapi/hog.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tapi/opencl_custom_kernel.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tapi/pyrlk_optical_flow.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tapi/squares.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tapi/ufacedetect.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/tapi/video_acceleration.cpp
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tapi/example_tapi_bgfg_segm.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tapi/example_tapi_camshift.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tapi/example_tapi_clahe.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tapi/example_tapi_dense_optical_flow.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tapi/example_tapi_hog.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tapi/example_tapi_opencl_custom_kernel.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tapi/example_tapi_pyrlk_optical_flow.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tapi/example_tapi_squares.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tapi/example_tapi_ufacedetect.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/tapi/example_tapi_video_acceleration.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/opencl/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/opencl/opencl-opencv-interop.cpp
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/opencl/example_opencl_opencl-opencv-interop.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/sycl/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/sycl/sycl-opencv-interop.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/directx/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/directx/d3d10_interop.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/directx/d3d11_interop.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/directx/d3d9_interop.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/directx/d3d9ex_interop.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/directx/d3dsample.hpp
  -- Installing: D:/build/opencv/vs_base/install/samples/directx/winapp.hpp
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/directx/example_directx_d3d10_interop.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/directx/example_directx_d3d11_interop.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/directx/example_directx_d3d9_interop.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/directx/example_directx_d3d9ex_interop.exe
  -- Installing: D:/build/opencv/vs_base/install/x64/vc17/samples/opengl/example_opengl_opengl.exe
  -- Installing: D:/build/opencv/vs_base/install/samples/opengl/CMakeLists.txt
  -- Installing: D:/build/opencv/vs_base/install/samples/opengl/opengl.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/opengl/opengl_interop.cpp
  -- Installing: D:/build/opencv/vs_base/install/samples/opengl/winapp.hpp

VS debug build took: 162.01 minutes
- Build through Visual Studio GUI by opening up the OpenCV.sln in Visual Studio, selecting your Configuration, clicking on <strong>Solution Explorer</strong>, expanding <strong>CMakeTargets</strong>, right clicking on <strong>INSTALL</strong> and clicking <strong>Build</strong>.<img class="alignnone size-full wp-image-225" src="https://jamesbowley.co.uk/wp-content/uploads/2017/01/cmake_install.png" alt="" width="220" height="158">

Either approach will both build the library and copy the necessary redistributable parts to the install directory, PATH_TO_OPENCV_SOURCE/build/install in this example. All that is required now to run any programs compiled against these libs is to add the directory containing opencv_world460.dll to the user path.

If everything was successful, congratulations, you now have OpenCV built with CUDA. To quickly verify that the CUDA modules are working and check if there is any performance benefit on your specific hardware see below

Decreasing the build time with Ninja

The build time for OpenCV can be reduced by more than 2x (from 2 hours to 42 mins to 1 hour on an i7-12700H) by utilizing the ninja build system instead of directly generating Visual Studio solution files. The only issue is that OpenCV still uses CMake find_package(CUDA) and not the more modern enable_language(CUDA) to add CUDA support. As a result the Ninja Multi-Config generator isn't supported and CMake needs to be run for each configuration Release or Debug. An issue has been raised with CMake but this is unlikely to be "fixed" as support for find_package(CUDA) has been deprecieated since CMake 3.10.

To build for a single configuration, say release

The only difference you may notice is that Ninja will only produce one configuration at a time, either a Debug or Release, therefore the buildType must be set before calling CMake. In the section above the configuration was set to Release, to change it to Debug simply replace Release with Debug as shown below

set "buildType=Debug"

Using ninja only requires three extra configuration steps:

1.Configuring Visual Studio Development tools by entering the following into the command prompt before entering the CMake command (changing Community to either Professional or Enterprise if necessary)

"C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build/vcvars64.bat"
vcvars_script = 'C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build/vcvars64.bat'
  1. Changing the generator from "Visual Studio 17 2022" to Ninja (as noted above Ninja Multi-Config isn't supported)
    set "generator=Ninja"
generator="Ninja"
  1. Adding the desired build type, e.g. to build Relase

    -DCMAKE_BUILD_TYPE=Release

For example entering the following into the command prompt will generate ninja build files to build a Release version of OpenCV with CUDA 11.7

"C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build/vcvars64.bat"
set "opencv_source=PATH_TO_OPENCV_SOURCE"
set "opencv_contrib_source=PATH_TO_OPENCV_CONTRIB_MODULES"
set "opencv_build=PATH_TO_OPENCV_BUILD"
set "build_type=Release"
set "generator=Ninja"
"C:\Program Files\CMake\bin\cmake.exe" -B"%opencv_build%/" -H"%opencv_source%/" -G"%generator%" -DCMAKE_BUILD_TYPE=%build_type% -DOPENCV_EXTRA_MODULES_PATH="%opencv_contrib_source%/" ^
-DINSTALL_TESTS=ON -DINSTALL_C_EXAMPLES=ON -DBUILD_EXAMPLES=ON ^
-DBUILD_opencv_world=ON ^
-DWITH_CUDA=ON -DCUDA_TOOLKIT_ROOT_DIR="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7" -DCUDA_FAST_MATH=ON -DWITH_CUBLAS=ON -DCUDA_ARCH_PTX=8.6 -DWITH_NVCUVID=ON ^
-DWITH_OPENGL=ON ^
-DWITH_MFX=ON

The easiest way to build both Release and Debug configurations so that they can be picked up by other projects using CMake is to specify the same installation directory for both configurations, that is

Release and Debug Example Generate Release build files in the PATH_TO_OPENCV_BUILD_RELEASE directory installing to PATH_TO_OPENCV_BUILD_RELEASE/install
"C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build/vcvars64.bat"
set "opencv_source=PATH_TO_OPENCV_SOURCE"
set "opencv_contrib_source=PATH_TO_OPENCV_CONTRIB_MODULES"
set "opencv_build=PATH_TO_OPENCV_BUILD_RELEASE"
set "opencv_install=PATH_TO_OPENCV_BUILD_RELEASE/install"
set "build_type=Release"
set "generator=Ninja"
"C:\Program Files\CMake\bin\cmake.exe" -B"%opencv_build%/" -H"%opencv_source%/" -G"%generator%" -DCMAKE_BUILD_TYPE=%build_type% -DOPENCV_EXTRA_MODULES_PATH="%opencv_contrib_source%/" ^
-DINSTALL_TESTS=ON -DINSTALL_C_EXAMPLES=ON -DBUILD_EXAMPLES=ON ^
-DBUILD_opencv_world=ON ^
-DWITH_CUDA=ON -DCUDA_TOOLKIT_ROOT_DIR="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7" -DCUDA_FAST_MATH=ON -DWITH_CUBLAS=ON -DCUDA_ARCH_PTX=8.6 -DWITH_NVCUVID=ON ^
-DWITH_OPENGL=ON ^
-DWITH_MFX=ON ^
-DCMAKE_INSTALL_PREFIX=%opencv_install%
Then generate Debug build files in the PATH_TO_OPENCV_BUILD_DEBUG directory and install to the same directory as Release PATH_TO_OPENCV_BUILD_RELEASE/install
"C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build/vcvars64.bat"
set "opencv_source=PATH_TO_OPENCV_SOURCE"
set "opencv_contrib_source=PATH_TO_OPENCV_CONTRIB_MODULES"
set "opencv_build=PATH_TO_OPENCV_BUILD_DEBUG"
set "opencv_install=PATH_TO_OPENCV_BUILD_RELEASE/install"
set "build_type=Debug"
set "generator=Ninja"
"C:\Program Files\CMake\bin\cmake.exe" -B"%opencv_build%/" -H"%opencv_source%/" -G"%generator%" -DCMAKE_BUILD_TYPE=%build_type% -DOPENCV_EXTRA_MODULES_PATH="%opencv_contrib_source%/" ^
-DINSTALL_TESTS=ON -DINSTALL_C_EXAMPLES=ON -DBUILD_EXAMPLES=ON ^
-DBUILD_opencv_world=ON ^
-DWITH_CUDA=ON -DCUDA_TOOLKIT_ROOT_DIR="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7" -DCUDA_FAST_MATH=ON -DWITH_CUBLAS=ON -DCUDA_ARCH_PTX=8.6 -DWITH_NVCUVID=ON ^
-DWITH_OPENGL=ON ^
-DWITH_MFX=ON ^
-DCMAKE_INSTALL_PREFIX=%opencv_install%
then when you call find_package( OpenCV ) from your project both the Release and Debug libraries will be located correctly.
opencv_build_ninja=os.path.join(build_path,"ninja_base")
cmake_generate_ninja = [f'call "{vcvars_script}" && "{cmake_exe}"'] + cmake_base_config + ["-B"+opencv_build_ninja, "-G"+generator]
#cmake_generate_ninja = ['call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat" && ' + cmake_base]
                        
                        #cmake_base_vs = cmake_base + ["-G"+generator]
#" ".join(cmake_generate_ninja)
         
         
         
 
 
'-BD:/opencv/opencv-4.6.0/build -HD:/opencv/opencv-4.6.0/ -DOPENCV_EXTRA_MODULES_PATH=D:/opencv/opencv_contrib-4.6.0/modules -DBUILD_opencv_world=ON -DINSTALL_TESTS=ON -DINSTALL_C_EXAMPLES=ON -DBUILD_EXAMPLES=ON -DWITH_CUDA=ON -DCUDA_TOOLKIT_ROOT_DIR=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7 -DCUDA_FAST_MATH=ON -DWITH_CUBLAS=ON -DCUDA_ARCH_PTX=8.6 -DWITH_NVCUVID=ON -DWITH_OPENGL=ON -DWITH_MFX=ON'
 
#out = subprocess.check_output(cmake_generate_ninja,shell=True)
    
    
 
start = time.time()
out_generate = subprocess.check_output(" ".join(cmake_generate_ninja),shell=True)
end = time.time()
print(out_generate.decode("utf-8")) # only print success, need to trim
print (f'Ninja build file generation took: {(end-start)/60:.2f} minutes')
**********************************************************************
** Visual Studio 2022 Developer Command Prompt v17.2.6
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
[vcvarsall.bat] Environment initialized for: 'x64'
-- 'Release' build type is used by default. Use CMAKE_BUILD_TYPE to specify build type (Release or Debug)
-- The CXX compiler identification is MSVC 19.32.31332.0
-- The C compiler identification is MSVC 19.32.31332.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.32.31326/bin/Hostx64/x64/cl.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.32.31326/bin/Hostx64/x64/cl.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- ocv_init_download: OpenCV source tree is not fetched as git repository. 3rdparty resources will be downloaded from github.com by default.
-- Detected processor: AMD64
-- Found PythonInterp: C:/Users/b/mambaforge/python.exe (found suitable version "3.9.13", minimum required is "2.7") 
-- Could NOT find Python2 (missing: Python2_EXECUTABLE Interpreter) 
    Reason given by package: 
        Interpreter: Wrong major version for the interpreter "C:/Users/b/mambaforge/python.exe"

-- Found PythonInterp: C:/Users/b/mambaforge/python.exe (found suitable version "3.9.13", minimum required is "3.2") 
-- Found PythonLibs: C:/Users/b/mambaforge/libs/python39.lib (found suitable exact version "3.9.13") 
-- Performing Test HAVE_CXX_FP:PRECISE
-- Performing Test HAVE_CXX_FP:PRECISE - Success
-- Performing Test HAVE_C_FP:PRECISE
-- Performing Test HAVE_C_FP:PRECISE - Success
-- Performing Test HAVE_CPU_SSE3_SUPPORT (check file: cmake/checks/cpu_sse3.cpp)
-- Performing Test HAVE_CPU_SSE3_SUPPORT - Success
-- Performing Test HAVE_CPU_SSSE3_SUPPORT (check file: cmake/checks/cpu_ssse3.cpp)
-- Performing Test HAVE_CPU_SSSE3_SUPPORT - Success
-- Performing Test HAVE_CPU_SSE4_1_SUPPORT (check file: cmake/checks/cpu_sse41.cpp)
-- Performing Test HAVE_CPU_SSE4_1_SUPPORT - Success
-- Performing Test HAVE_CPU_POPCNT_SUPPORT (check file: cmake/checks/cpu_popcnt.cpp)
-- Performing Test HAVE_CPU_POPCNT_SUPPORT - Success
-- Performing Test HAVE_CPU_SSE4_2_SUPPORT (check file: cmake/checks/cpu_sse42.cpp)
-- Performing Test HAVE_CPU_SSE4_2_SUPPORT - Success
-- Performing Test HAVE_CXX_ARCH:AVX (check file: cmake/checks/cpu_fp16.cpp)
-- Performing Test HAVE_CXX_ARCH:AVX - Success
-- Performing Test HAVE_CXX_ARCH:AVX2 (check file: cmake/checks/cpu_avx2.cpp)
-- Performing Test HAVE_CXX_ARCH:AVX2 - Success
-- Performing Test HAVE_CXX_ARCH:AVX512 (check file: cmake/checks/cpu_avx512.cpp)
-- Performing Test HAVE_CXX_ARCH:AVX512 - Success
-- Performing Test HAVE_CPU_BASELINE_FLAGS
-- Performing Test HAVE_CPU_BASELINE_FLAGS - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_1
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_1 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_2
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_2 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_FP16
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_FP16 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX2
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX2 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX512_SKX
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX512_SKX - Success
-- Performing Test HAVE_CXX_W15240
-- Performing Test HAVE_CXX_W15240 - Success
-- Performing Test HAVE_C_W15240
-- Performing Test HAVE_C_W15240 - Success
-- Looking for malloc.h
-- Looking for malloc.h - found
-- Looking for _aligned_malloc
-- Looking for _aligned_malloc - found
-- Looking for fseeko
-- Looking for fseeko - not found
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of off64_t
-- Check size of off64_t - failed
-- libjpeg-turbo: VERSION = 2.1.2, BUILD = opencv-4.6.0-libjpeg-turbo
-- Check size of size_t
-- Check size of size_t - done
-- Check size of unsigned long
-- Check size of unsigned long - done
-- Looking for include file intrin.h
-- Looking for include file intrin.h - found
-- Looking for assert.h
-- Looking for assert.h - found
-- Looking for fcntl.h
-- Looking for fcntl.h - found
-- Looking for inttypes.h
-- Looking for inttypes.h - found
-- Looking for io.h
-- Looking for io.h - found
-- Looking for limits.h
-- Looking for limits.h - found
-- Looking for memory.h
-- Looking for memory.h - found
-- Looking for search.h
-- Looking for search.h - found
-- Looking for string.h
-- Looking for string.h - found
-- Performing Test C_HAS_inline
-- Performing Test C_HAS_inline - Success
-- Check size of signed short
-- Check size of signed short - done
-- Check size of unsigned short
-- Check size of unsigned short - done
-- Check size of signed int
-- Check size of signed int - done
-- Check size of unsigned int
-- Check size of unsigned int - done
-- Check size of signed long
-- Check size of signed long - done
-- Check size of signed long long
-- Check size of signed long long - done
-- Check size of unsigned long long
-- Check size of unsigned long long - done
-- Check size of unsigned char *
-- Check size of unsigned char * - done
-- Check size of ptrdiff_t
-- Check size of ptrdiff_t - done
-- Looking for memmove
-- Looking for memmove - not found
-- Looking for setmode
-- Looking for setmode - found
-- Looking for strcasecmp
-- Looking for strcasecmp - not found
-- Looking for strchr
-- Looking for strchr - found
-- Looking for strrchr
-- Looking for strrchr - found
-- Looking for strstr
-- Looking for strstr - found
-- Looking for strtol
-- Looking for strtol - found
-- Looking for strtol
-- Looking for strtol - found
-- Looking for strtoull
-- Looking for strtoull - found
-- Looking for lfind
-- Looking for lfind - found
-- Performing Test HAVE_SNPRINTF
-- Performing Test HAVE_SNPRINTF - Success
-- Performing Test HAVE_C_STD_C99
-- Performing Test HAVE_C_STD_C99 - Failed
-- Could NOT find OpenJPEG (minimal suitable version: 2.0, recommended version >= 2.3.1). OpenJPEG will be built from sources
-- OpenJPEG: VERSION = 2.4.0, BUILD = opencv-4.6.0-openjp2-2.4.0
-- Looking for stdlib.h
-- Looking for stdlib.h - found
-- Looking for stdio.h
-- Looking for stdio.h - found
-- Looking for math.h
-- Looking for math.h - found
-- Looking for float.h
-- Looking for float.h - found
-- Looking for time.h
-- Looking for time.h - found
-- Looking for stdarg.h
-- Looking for stdarg.h - found
-- Looking for ctype.h
-- Looking for ctype.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for inttypes.h
-- Looking for inttypes.h - found
-- Looking for strings.h
-- Looking for strings.h - not found
-- Looking for sys/stat.h
-- Looking for sys/stat.h - found
-- Looking for unistd.h
-- Looking for unistd.h - not found
-- Looking for include file malloc.h
-- Looking for include file malloc.h - found
-- Looking for _aligned_malloc
-- Looking for _aligned_malloc - found
-- Looking for posix_memalign
-- Looking for posix_memalign - not found
-- Looking for memalign
-- Looking for memalign - not found
-- OpenJPEG libraries will be built from sources: libopenjp2 (version "2.4.0")
-- IPPICV: Downloading ippicv_2020_win_intel64_20191018_general.zip from https://raw.githubusercontent.com/opencv/opencv_3rdparty/a56b6ac6f030c312b2dce17430eef13aed9af274/ippicv/ippicv_2020_win_intel64_20191018_general.zip
-- found Intel IPP (ICV version): 2020.0.0 [2020.0.0 Gold]
-- at: D:/build/opencv/ninja_base/3rdparty/ippicv/ippicv_win/icv
-- found Intel IPP Integration Wrappers sources: 2020.0.0
-- at: D:/build/opencv/ninja_base/3rdparty/ippicv/ippicv_win/iw
-- Found CUDNN: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7/lib/x64/cudnn.lib (found suitable version "8.4.1", minimum required is "7.5") 
-- CUDA detected: 11.7
-- CUDA NVCC target flags: -gencode;arch=compute_35,code=sm_35;-gencode;arch=compute_37,code=sm_37;-gencode;arch=compute_50,code=sm_50;-gencode;arch=compute_52,code=sm_52;-gencode;arch=compute_60,code=sm_60;-gencode;arch=compute_61,code=sm_61;-gencode;arch=compute_70,code=sm_70;-gencode;arch=compute_75,code=sm_75;-gencode;arch=compute_80,code=sm_80;-gencode;arch=compute_86,code=sm_86;-D_FORCE_INLINES;-gencode;arch=compute_86,code=compute_86
-- Could not find OpenBLAS include. Turning OpenBLAS_FOUND off
-- Could not find OpenBLAS lib. Turning OpenBLAS_FOUND off
-- Looking for sgemm_
-- Looking for sgemm_ - not found
-- Found Threads: TRUE  
-- Could NOT find BLAS (missing: BLAS_LIBRARIES) 
-- Could NOT find LAPACK (missing: LAPACK_LIBRARIES) 
    Reason given by package: LAPACK could not be found because dependency BLAS could not be found.

-- Could NOT find JNI (missing: JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY JAVA_INCLUDE_PATH JAVA_INCLUDE_PATH2 JAVA_AWT_INCLUDE_PATH) 
-- Could NOT find Pylint (missing: PYLINT_EXECUTABLE) 
-- Could NOT find Flake8 (missing: FLAKE8_EXECUTABLE) 
-- VTK is not found. Please set -DVTK_DIR in CMake to VTK build directory, or to VTK install subdirectory with VTKConfig.cmake file
-- ADE: Downloading v0.1.1f.zip from https://github.com/opencv/ade/archive/v0.1.1f.zip
-- FFMPEG: Downloading opencv_videoio_ffmpeg.dll from https://raw.githubusercontent.com/opencv/opencv_3rdparty/65ec04d4573dcdfa4531f0b9e67f35d8ffff873e/ffmpeg/opencv_videoio_ffmpeg.dll
-- FFMPEG: Downloading opencv_videoio_ffmpeg_64.dll from https://raw.githubusercontent.com/opencv/opencv_3rdparty/65ec04d4573dcdfa4531f0b9e67f35d8ffff873e/ffmpeg/opencv_videoio_ffmpeg_64.dll
-- FFMPEG: Downloading ffmpeg_version.cmake from https://raw.githubusercontent.com/opencv/opencv_3rdparty/65ec04d4573dcdfa4531f0b9e67f35d8ffff873e/ffmpeg/ffmpeg_version.cmake
-- Looking for mfapi.h
-- Looking for mfapi.h - found
-- Looking for d3d11_4.h
-- Looking for d3d11_4.h - found
-- Module opencv_alphamat disabled because the following dependencies are not found: Eigen
-- freetype2:   NO
-- harfbuzz:    NO
-- Julia not found. Not compiling Julia Bindings. 
-- Module opencv_ovis disabled because OGRE3D was not found
-- No preference for use of exported gflags CMake configuration set, and no hints for include/library directories provided. Defaulting to preferring an installed/exported gflags CMake configuration if available.
-- Failed to find installed gflags CMake configuration, searching for gflags build directories exported with CMake.
-- Failed to find gflags - Failed to find an installed/exported CMake configuration for gflags, will perform search for installed gflags components.
-- Failed to find gflags - Could not find gflags include directory, set GFLAGS_INCLUDE_DIR to directory containing gflags/gflags.h
-- Failed to find glog - Could not find glog include directory, set GLOG_INCLUDE_DIR to directory containing glog/logging.h
-- Module opencv_sfm disabled because the following dependencies are not found: Eigen Glog/Gflags
-- Tesseract:   NO
-- Processing WORLD modules...
--     module opencv_cudev...
--     module opencv_core...
-- Allocator metrics storage type: 'long long'
--     module opencv_cudaarithm...
--     module opencv_flann...
--     module opencv_imgproc...
--     module opencv_intensity_transform...
--     module opencv_ml...
--     module opencv_phase_unwrapping...
--     module opencv_plot...
--     module opencv_quality...
--     module opencv_reg...
--     module opencv_surface_matching...
--     module opencv_cudafilters...
--     module opencv_cudaimgproc...
--     module opencv_cudawarping...
--     module opencv_dnn...
-- Registering hook 'INIT_MODULE_SOURCES_opencv_dnn': D:/opencv/opencv-4.6.0/modules/dnn/cmake/hooks/INIT_MODULE_SOURCES_opencv_dnn.cmake
--     module opencv_dnn_superres...
--     module opencv_features2d...
--     module opencv_fuzzy...
--     module opencv_hfs...
--     module opencv_imgcodecs...
-- imgcodecs: OpenEXR codec is disabled in runtime. Details: https://github.com/opencv/opencv/issues/21326
--     module opencv_line_descriptor...
--     module opencv_photo...
--     module opencv_saliency...
--     module opencv_text...
--     module opencv_videoio...
--     module opencv_wechat_qrcode...
-- wechat_qrcode: Downloading detect.caffemodel from https://raw.githubusercontent.com/WeChatCV/opencv_3rdparty/a8b69ccc738421293254aec5ddb38bd523503252/detect.caffemodel
-- wechat_qrcode: Downloading detect.prototxt from https://raw.githubusercontent.com/WeChatCV/opencv_3rdparty/a8b69ccc738421293254aec5ddb38bd523503252/detect.prototxt
-- wechat_qrcode: Downloading sr.caffemodel from https://raw.githubusercontent.com/WeChatCV/opencv_3rdparty/a8b69ccc738421293254aec5ddb38bd523503252/sr.caffemodel
-- wechat_qrcode: Downloading sr.prototxt from https://raw.githubusercontent.com/WeChatCV/opencv_3rdparty/a8b69ccc738421293254aec5ddb38bd523503252/sr.prototxt
--     module opencv_xphoto...
--     module opencv_barcode...
--     module opencv_calib3d...
--     module opencv_cudacodec...
--     module opencv_cudafeatures2d...
--     module opencv_cudastereo...
--     module opencv_datasets...
--     module opencv_highgui...
-- highgui: using builtin backend: WIN32UI
--     module opencv_mcc...
--     module opencv_objdetect...
--     module opencv_rapid...
--     module opencv_rgbd...
-- rgbd: Eigen support is disabled. Eigen is Required for Posegraph optimization
--     module opencv_shape...
--     module opencv_structured_light...
--     module opencv_video...
--     module opencv_xfeatures2d...
-- xfeatures2d/boostdesc: Downloading boostdesc_bgm.i from https://raw.githubusercontent.com/opencv/opencv_3rdparty/34e4206aef44d50e6bbcd0ab06354b52e7466d26/boostdesc_bgm.i
-- xfeatures2d/boostdesc: Downloading boostdesc_bgm_bi.i from https://raw.githubusercontent.com/opencv/opencv_3rdparty/34e4206aef44d50e6bbcd0ab06354b52e7466d26/boostdesc_bgm_bi.i
-- xfeatures2d/boostdesc: Downloading boostdesc_bgm_hd.i from https://raw.githubusercontent.com/opencv/opencv_3rdparty/34e4206aef44d50e6bbcd0ab06354b52e7466d26/boostdesc_bgm_hd.i
-- xfeatures2d/boostdesc: Downloading boostdesc_binboost_064.i from https://raw.githubusercontent.com/opencv/opencv_3rdparty/34e4206aef44d50e6bbcd0ab06354b52e7466d26/boostdesc_binboost_064.i
-- xfeatures2d/boostdesc: Downloading boostdesc_binboost_128.i from https://raw.githubusercontent.com/opencv/opencv_3rdparty/34e4206aef44d50e6bbcd0ab06354b52e7466d26/boostdesc_binboost_128.i
-- xfeatures2d/boostdesc: Downloading boostdesc_binboost_256.i from https://raw.githubusercontent.com/opencv/opencv_3rdparty/34e4206aef44d50e6bbcd0ab06354b52e7466d26/boostdesc_binboost_256.i
-- xfeatures2d/boostdesc: Downloading boostdesc_lbgm.i from https://raw.githubusercontent.com/opencv/opencv_3rdparty/34e4206aef44d50e6bbcd0ab06354b52e7466d26/boostdesc_lbgm.i
-- xfeatures2d/vgg: Downloading vgg_generated_48.i from https://raw.githubusercontent.com/opencv/opencv_3rdparty/fccf7cd6a4b12079f73bbfb21745f9babcd4eb1d/vgg_generated_48.i
-- xfeatures2d/vgg: Downloading vgg_generated_64.i from https://raw.githubusercontent.com/opencv/opencv_3rdparty/fccf7cd6a4b12079f73bbfb21745f9babcd4eb1d/vgg_generated_64.i
-- xfeatures2d/vgg: Downloading vgg_generated_80.i from https://raw.githubusercontent.com/opencv/opencv_3rdparty/fccf7cd6a4b12079f73bbfb21745f9babcd4eb1d/vgg_generated_80.i
-- xfeatures2d/vgg: Downloading vgg_generated_120.i from https://raw.githubusercontent.com/opencv/opencv_3rdparty/fccf7cd6a4b12079f73bbfb21745f9babcd4eb1d/vgg_generated_120.i
--     module opencv_ximgproc...
--     module opencv_xobjdetect...
--     module opencv_aruco...
--     module opencv_bgsegm...
--     module opencv_bioinspired...
--     module opencv_ccalib...
--     module opencv_cudabgsegm...
--     module opencv_cudalegacy...
--     module opencv_cudaobjdetect...
--     module opencv_dnn_objdetect...
--     module opencv_dpm...
--     module opencv_face...
-- data: Downloading face_landmark_model.dat from https://raw.githubusercontent.com/opencv/opencv_3rdparty/8afa57abc8229d611c4937165d20e2a2d9fc5a12/face_landmark_model.dat
--     module opencv_gapi...
--     module opencv_optflow...
--     module opencv_stitching...
--     module opencv_tracking...
--     module opencv_cudaoptflow...
-- NVIDIA_OPTICAL_FLOW: Downloading edb50da3cf849840d680249aa6dbef248ebce2ca.zip from https://github.com/NVIDIA/NVIDIAOpticalFlowSDK/archive/edb50da3cf849840d680249aa6dbef248ebce2ca.zip
-- Building with NVIDIA Optical Flow API 2.0
--     module opencv_stereo...
--     module opencv_superres...
--     module opencv_videostab...
-- Processing WORLD modules... DONE
-- Excluding from source files list: <BUILD>/modules/world/layers/layers_common.rvv.cpp
-- Found 'misc' Python modules from D:/opencv/opencv-4.6.0/modules/python/package/extra_modules
-- Found 'mat_wrapper;utils' Python modules from D:/opencv/opencv-4.6.0/modules/core/misc/python/package
-- Found 'gapi' Python modules from D:/opencv/opencv-4.6.0/modules/gapi/misc/python/package
-- SYCL/OpenCL samples are skipped: SYCL SDK is required
--    - check configuration of SYCL_DIR/SYCL_ROOT/CMAKE_MODULE_PATH
--    - ensure that right compiler is selected from SYCL SDK (e.g, clang++): CMAKE_CXX_COMPILER=C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.32.31326/bin/Hostx64/x64/cl.exe
-- 
-- General configuration for OpenCV 4.6.0 =====================================
--   Version control:               unknown
-- 
--   Extra modules:
--     Location (extra):            D:/opencv/opencv_contrib-4.6.0/modules
--     Version control (extra):     unknown
-- 
--   Platform:
--     Timestamp:                   2022-07-29T14:26:27Z
--     Host:                        Windows 10.0.22000 AMD64
--     CMake:                       3.23.2
--     CMake generator:             Ninja
--     CMake build tool:            C:/PROGRA~1/MICROS~2/2022/COMMUN~1/Common7/IDE/COMMON~1/MICROS~1/CMake/Ninja/ninja.exe
--     MSVC:                        1932
--     Configuration:               Release
-- 
--   CPU/HW features:
--     Baseline:                    SSE SSE2 SSE3
--       requested:                 SSE3
--     Dispatched code generation:  SSE4_1 SSE4_2 FP16 AVX AVX2 AVX512_SKX
--       requested:                 SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX
--       SSE4_1 (18 files):         + SSSE3 SSE4_1
--       SSE4_2 (2 files):          + SSSE3 SSE4_1 POPCNT SSE4_2
--       FP16 (1 files):            + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX
--       AVX (5 files):             + SSSE3 SSE4_1 POPCNT SSE4_2 AVX
--       AVX2 (33 files):           + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2
--       AVX512_SKX (8 files):      + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2 AVX_512F AVX512_COMMON AVX512_SKX
-- 
--   C/C++:
--     Built as dynamic libs?:      YES
--     C++ standard:                11
--     C++ Compiler:                C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.32.31326/bin/Hostx64/x64/cl.exe  (ver 19.32.31332.0)
--     C++ flags (Release):         /DWIN32 /D_WINDOWS /W4 /GR  /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi  /fp:precise /FS     /EHa /wd4127 /wd4251 /wd4324 /wd4275 /wd4512 /wd4589  /MD /O2 /Ob2 /DNDEBUG 
--     C++ flags (Debug):           /DWIN32 /D_WINDOWS /W4 /GR  /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi  /fp:precise /FS     /EHa /wd4127 /wd4251 /wd4324 /wd4275 /wd4512 /wd4589  /MDd /Zi /Ob0 /Od /RTC1 
--     C Compiler:                  C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.32.31326/bin/Hostx64/x64/cl.exe
--     C flags (Release):           /DWIN32 /D_WINDOWS /W3  /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi  /fp:precise /FS       /MD /O2 /Ob2 /DNDEBUG 
--     C flags (Debug):             /DWIN32 /D_WINDOWS /W3  /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi  /fp:precise /FS     /MDd /Zi /Ob0 /Od /RTC1 
--     Linker flags (Release):      /machine:x64  /INCREMENTAL:NO 
--     Linker flags (Debug):        /machine:x64  /debug /INCREMENTAL 
--     ccache:                      NO
--     Precompiled headers:         NO
--     Extra dependencies:          cudart_static.lib nppc.lib nppial.lib nppicc.lib nppidei.lib nppif.lib nppig.lib nppim.lib nppist.lib nppisu.lib nppitc.lib npps.lib cublas.lib cudnn.lib cufft.lib -LIBPATH:"C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7/lib/x64"
--     3rdparty dependencies:
-- 
--   OpenCV modules:
--     To be built:                 aruco barcode bgsegm bioinspired calib3d ccalib core cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev datasets dnn dnn_objdetect dnn_superres dpm face features2d flann fuzzy gapi hfs highgui img_hash imgcodecs imgproc intensity_transform line_descriptor mcc ml objdetect optflow phase_unwrapping photo plot quality rapid reg rgbd saliency shape stereo stitching structured_light superres surface_matching text tracking ts video videoio videostab wechat_qrcode world xfeatures2d ximgproc xobjdetect xphoto
--     Disabled:                    -
--     Disabled by dependency:      -
--     Unavailable:                 alphamat cvv freetype hdf java julia matlab ovis python2 python3 sfm viz
--     Applications:                tests perf_tests examples apps
--     Documentation:               NO
--     Non-free algorithms:         NO
-- 
--   Windows RT support:            NO
-- 
--   GUI: 
--     Win32 UI:                    YES
--     OpenGL support:              YES (opengl32 glu32)
--     VTK support:                 NO
-- 
--   Media I/O: 
--     ZLib:                        build (ver 1.2.12)
--     JPEG:                        build-libjpeg-turbo (ver 2.1.2-62)
--     WEBP:                        build (ver encoder: 0x020f)
--     PNG:                         build (ver 1.6.37)
--     TIFF:                        build (ver 42 - 4.2.0)
--     JPEG 2000:                   build (ver 2.4.0)
--     OpenEXR:                     build (ver 2.3.0)
--     HDR:                         YES
--     SUNRASTER:                   YES
--     PXM:                         YES
--     PFM:                         YES
-- 
--   Video I/O:
--     DC1394:                      NO
--     FFMPEG:                      YES (prebuilt binaries)
--       avcodec:                   YES (58.134.100)
--       avformat:                  YES (58.76.100)
--       avutil:                    YES (56.70.100)
--       swscale:                   YES (5.9.100)
--       avresample:                YES (4.0.0)
--     GStreamer:                   YES (1.20.3)
--     DirectShow:                  YES
--     Media Foundation:            YES
--       DXVA:                      YES
--     Intel Media SDK:             NO
-- 
--   Parallel framework:            Concurrency
-- 
--   Trace:                         YES (with Intel ITT)
-- 
--   Other third-party libraries:
--     Intel IPP:                   2020.0.0 Gold [2020.0.0]
--            at:                   D:/build/opencv/ninja_base/3rdparty/ippicv/ippicv_win/icv
--     Intel IPP IW:                sources (2020.0.0)
--               at:                D:/build/opencv/ninja_base/3rdparty/ippicv/ippicv_win/iw
--     Lapack:                      NO
--     Eigen:                       NO
--     Custom HAL:                  NO
--     Protobuf:                    build (3.19.1)
-- 
--   NVIDIA CUDA:                   YES (ver 11.7, CUFFT CUBLAS NVCUVID FAST_MATH)
--     NVIDIA GPU arch:             35 37 50 52 60 61 70 75 80 86
--     NVIDIA PTX archs:            86
-- 
--   cuDNN:                         YES (ver 8.4.1)
-- 
--   OpenCL:                        YES (NVD3D11)
--     Include path:                D:/opencv/opencv-4.6.0/3rdparty/include/opencl/1.2
--     Link libraries:              Dynamic load
-- 
--   Python (for build):            C:/Users/b/mambaforge/python.exe
-- 
--   Java:                          
--     ant:                         NO
--     JNI:                         NO
--     Java wrappers:               NO
--     Java tests:                  NO
-- 
--   Install to:                    D:/build/opencv/ninja_base/install
-- -----------------------------------------------------------------
-- 
-- Configuring done
-- Generating done
-- Build files have been written to: D:/build/opencv/ninja_base

Ninja build file generation took: 1.39 minutes

The build can then be started in the same way as before dropping the --config option as

"C:\Program Files\CMake\bin\cmake.exe" --build %openCvBuild% --target install
cmake_build_install_ninja = f'call "{vcvars_script}" && "{cmake_exe}" --build {opencv_build_ninja} --target install --config release'
start = time.time()
out_build = subprocess.check_output(cmake_build_install_ninja,shell=True)
end = time.time()
print(out_build.decode("utf-8")) # only print success, need to trim
print (f'Ninja release build took: {(end-start)/60:.2f} minutes')
**********************************************************************
** Visual Studio 2022 Developer Command Prompt v17.2.6
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
[vcvarsall.bat] Environment initialized for: 'x64'
[1/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\compress.c.obj
[2/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\gzclose.c.obj
[3/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\assert.cpp.obj
[4/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\edge.cpp.obj
[5/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\gzwrite.c.obj
[6/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\crc32.c.obj
[7/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\adler32.c.obj
[8/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\deflate.c.obj
[9/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\uncompr.c.obj
[10/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\gzlib.c.obj
[11/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\inffast.c.obj
[12/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\check_cycles.cpp.obj
[13/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\memory_descriptor.cpp.obj
[14/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\gzread.c.obj
[15/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\metadata.cpp.obj
[16/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\zutil.c.obj
[17/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\inftrees.c.obj
[18/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\trees.c.obj
[19/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\metatypes.cpp.obj
[20/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\infback.c.obj
[21/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcapimin.c.obj
[22/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\memory_descriptor_ref.cpp.obj
[23/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\node.cpp.obj
[24/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcicc.c.obj
[25/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jccoefct.c.obj
[26/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcinit.c.obj
[27/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcapistd.c.obj
[28/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcmarker.c.obj
[29/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcomapi.c.obj
[30/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcmainct.c.obj
[31/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\memory_descriptor_view.cpp.obj
[32/3598] Building C object 3rdparty\zlib\CMakeFiles\zlib.dir\inflate.c.obj
[33/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcmaster.c.obj
[34/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\search.cpp.obj
[35/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jccolor.c.obj
[36/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcdctmgr.c.obj
[37/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\memory_accessor.cpp.obj
[38/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdapimin.c.obj
[39/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jctrans.c.obj
[40/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\topological_sort.cpp.obj
[41/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcsample.c.obj
[42/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcparam.c.obj
[43/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcprepct.c.obj
[44/3598] Linking C static library 3rdparty\lib\zlib.lib
[45/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdapistd.c.obj
[46/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdatadst.c.obj
[47/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdatasrc.c.obj
[48/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdhuff.c.obj
[49/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdtrans.c.obj
[50/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdcoefct.c.obj
[51/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jerror.c.obj
[52/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jfdctfst.c.obj
[53/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jddctmgr.c.obj
[54/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdpostct.c.obj
[55/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcphuff.c.obj
[56/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdmaster.c.obj
[57/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jfdctflt.c.obj
[58/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdinput.c.obj
[59/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdsample.c.obj
[60/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdicc.c.obj
[61/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\subgraphs.cpp.obj
[62/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\graph.cpp.obj
[63/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdmainct.c.obj
[64/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdmarker.c.obj
[65/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\execution_engine.cpp.obj
[66/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jaricom.c.obj
[67/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jmemnobs.c.obj
[68/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdmerge.c.obj
[69/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdcolor.c.obj
[70/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jidctflt.c.obj
[71/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jidctfst.c.obj
[72/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jmemmgr.c.obj
[73/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jcarith.c.obj
[74/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jutils.c.obj
[75/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jsimd_none.c.obj
[76/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdphuff.c.obj
[77/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jdarith.c.obj
[78/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jquant2.c.obj
[79/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jfdctint.c.obj
[80/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jquant1.c.obj
[81/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jidctred.c.obj
[82/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_fax3sm.c.obj
[83/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jidctint.c.obj
[84/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_codec.c.obj
[85/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_jpeg.c.obj
[86/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_extension.c.obj
[87/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_dirinfo.c.obj
[88/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_aux.c.obj
[89/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_close.c.obj
[90/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_compress.c.obj
[91/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_color.c.obj
[92/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_error.c.obj
[93/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_dumpmode.c.obj
[94/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_jpeg_12.c.obj
[95/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_flush.c.obj
[96/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_jbig.c.obj
[97/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_dir.c.obj
[98/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_win32.c.obj
[99/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_dirread.c.obj
[100/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_getimage.c.obj
[101/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_ojpeg.c.obj
[102/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_fax3.c.obj
[103/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_zstd.c.obj
[104/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\passes\communications.cpp.obj
[105/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_next.c.obj
[106/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_open.c.obj
[107/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_predict.c.obj
[108/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_pixarlog.c.obj
[109/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_print.c.obj
[110/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_read.c.obj
[111/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_lzma.c.obj
[112/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_luv.c.obj
[113/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_packbits.c.obj
[114/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_lzw.c.obj
[115/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_strip.c.obj
[116/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_dirwrite.c.obj
[117/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dec\quant_dec.c.obj
[118/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dec\buffer_dec.c.obj
[119/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dec\alpha_dec.c.obj
[120/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dec\io_dec.c.obj
[121/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dec\idec_dec.c.obj
[122/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dec\webp_dec.c.obj
[123/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\alpha_processing_mips_dsp_r2.c.obj
[124/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dec\tree_dec.c.obj
[125/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dec\frame_dec.c.obj
[126/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\alpha_processing_sse41.c.obj
[127/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_version.c.obj
[128/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_swab.c.obj
[129/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_thunder.c.obj
[130/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dec\vp8_dec.c.obj
[131/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\alpha_processing_neon.c.obj
[132/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\demux\anim_decode.c.obj
[133/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\demux\demux.c.obj
[134/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dec\vp8l_dec.c.obj
[135/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\cost_mips_dsp_r2.c.obj
[136/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\cost_mips32.c.obj
[137/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\filters_neon.c.obj
[138/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\filters_msa.c.obj
[139/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\dec_mips32.c.obj
[140/3598] Building CXX object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_stream.cxx.obj
[141/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\alpha_processing.c.obj
[142/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_warning.c.obj
[143/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\filters_mips_dsp_r2.c.obj
[144/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\alpha_processing_sse2.c.obj
[145/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\cost_neon.c.obj
[146/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\dec_mips_dsp_r2.c.obj
[147/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\dec_clip_tables.c.obj
[148/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\filters_sse2.c.obj
[149/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\cost_sse2.c.obj
[150/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\cost.c.obj
[151/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\cpu.c.obj
[152/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_tile.c.obj
[153/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless.c.obj
[154/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\dec_msa.c.obj
[155/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\dec_neon.c.obj
[156/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\enc_mips_dsp_r2.c.obj
[157/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\enc_neon.c.obj
[158/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\enc_mips32.c.obj
[159/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless_enc.c.obj
[160/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\dec_sse41.c.obj
[161/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\enc_msa.c.obj
[162/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_write.c.obj
[163/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\filters.c.obj
[164/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\dec_sse2.c.obj
[165/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless_enc_mips_dsp_r2.c.obj
[166/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\dec.c.obj
[167/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless_enc_neon.c.obj
[168/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless_enc_msa.c.obj
[169/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_webp.c.obj
[170/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless_msa.c.obj
[171/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\enc.c.obj
[172/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\predictor_enc.c.obj
[173/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless_mips_dsp_r2.c.obj
[174/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\enc_sse41.c.obj
[175/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless_neon.c.obj
[176/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\picture_psnr_enc.c.obj
[177/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\picture_rescale_enc.c.obj
[178/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\rescaler_mips_dsp_r2.c.obj
[179/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless_enc_mips32.c.obj
[180/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\rescaler_mips32.c.obj
[181/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\rescaler_neon.c.obj
[182/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless_enc_sse41.c.obj
[183/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\rescaler_sse2.c.obj
[184/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\rescaler_msa.c.obj
[185/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\rescaler.c.obj
[186/3598] Building C object 3rdparty\libtiff\CMakeFiles\libtiff.dir\tif_zip.c.obj
[187/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\picture_tools_enc.c.obj
[188/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\ssim.c.obj
[189/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\enc_sse2.c.obj
[190/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless_sse2.c.obj
[191/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\quant_enc.c.obj
[192/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\lossless_enc_sse2.c.obj
[193/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\upsampling_neon.c.obj
[194/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\yuv_neon.c.obj
[195/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\upsampling_mips_dsp_r2.c.obj
[196/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\upsampling_msa.c.obj
[197/3598] Linking CXX static library 3rdparty\lib\libtiff.lib
[198/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\yuv_mips32.c.obj
[199/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\yuv_mips_dsp_r2.c.obj
[200/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\ssim_sse2.c.obj
[201/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\config_enc.c.obj
[202/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\yuv.c.obj
[203/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\upsampling.c.obj
[204/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\upsampling_sse2.c.obj
[205/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\yuv_sse2.c.obj
[206/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\upsampling_sse41.c.obj
[207/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\cost_enc.c.obj
[208/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\filter_enc.c.obj
[209/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\alpha_enc.c.obj
[210/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\analysis_enc.c.obj
[211/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\dsp\yuv_sse41.c.obj
[212/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\backward_references_enc.c.obj
[213/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\iterator_enc.c.obj
[214/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\near_lossless_enc.c.obj
[215/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\bit_writer_utils.c.obj
[216/3598] Building CXX object CMakeFiles\ade.dir\3rdparty\ade\ade-0.1.1f\sources\ade\source\alloc.cpp.obj
[217/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\bit_reader_utils.c.obj
[218/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\tree_enc.c.obj
[219/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\mux\muxedit.c.obj
[220/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\picture_enc.c.obj
[221/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\token_enc.c.obj
[222/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\syntax_enc.c.obj
[223/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\mux\muxread.c.obj
[224/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\filters_utils.c.obj
[225/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\frame_enc.c.obj
[226/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\mux\muxinternal.c.obj
[227/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\webp_enc.c.obj
[228/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\quant_levels_dec_utils.c.obj
[229/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\histogram_enc.c.obj
[230/3598] Linking CXX static library 3rdparty\lib\ade.lib
[231/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\mux\anim_encode.c.obj
[232/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\random_utils.c.obj
[233/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\vp8l_enc.c.obj
[234/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\rescaler_utils.c.obj
[235/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\quant_levels_utils.c.obj
[236/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\color_cache_utils.c.obj
[237/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\backward_references_cost_enc.c.obj
[238/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\utils.c.obj
[239/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\huffman_encode_utils.c.obj
[240/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\event.c.obj
[241/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\cio.c.obj
[242/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\bio.c.obj
[243/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\huffman_utils.c.obj
[244/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\invert.c.obj
[245/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\mct.c.obj
[246/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\image.c.obj
[247/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\jp2.c.obj
[248/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\function_list.c.obj
[249/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\sparse_array.c.obj
[250/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\opj_malloc.c.obj
[251/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\pi.c.obj
[252/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\dwt.c.obj
[253/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\tgt.c.obj
[254/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\t2.c.obj
[255/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\enc\picture_csp_enc.c.obj
[256/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\mqc.c.obj
[257/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\j2k.c.obj
[258/3598] Building C object 3rdparty\libwebp\CMakeFiles\libwebp.dir\src\utils\thread_utils.c.obj
[259/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\thread.c.obj
[260/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\tcd.c.obj
[261/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\opj_clock.c.obj
[262/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\openjpeg.c.obj
[263/3598] Linking C static library 3rdparty\lib\libwebp.lib
[264/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngpread.c.obj
[265/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngmem.c.obj
[266/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngget.c.obj
[267/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngerror.c.obj
[268/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngread.c.obj
[269/3598] Building C object 3rdparty\openjpeg\openjp2\CMakeFiles\libopenjp2.dir\t1.c.obj
[270/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngrio.c.obj
[271/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngwio.c.obj
[272/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngset.c.obj
[273/3598] Linking C static library 3rdparty\lib\libopenjp2.lib
[274/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngtrans.c.obj
[275/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\png.c.obj
[276/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\intel\filter_sse2_intrinsics.c.obj
[277/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngwrite.c.obj
[278/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngrutil.c.obj
[279/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngrtran.c.obj
[280/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngwtran.c.obj
[281/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\pngwutil.c.obj
[282/3598] Building C object 3rdparty\libpng\CMakeFiles\libpng.dir\intel\intel_init.c.obj
[283/3598] Linking C static library 3rdparty\lib\libpng.lib
[284/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\Half\half.cpp.obj
[285/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDeepCompositing.cpp.obj
[286/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfCompressionAttribute.cpp.obj
[287/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfChannelListAttribute.cpp.obj
[288/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfBoxAttribute.cpp.obj
[289/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfChannelList.cpp.obj
[290/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfAttribute.cpp.obj
[291/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfConvert.cpp.obj
[292/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfChromaticities.cpp.obj
[293/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfAcesFile.cpp.obj
[294/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfB44Compressor.cpp.obj
[295/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfChromaticitiesAttribute.cpp.obj
[296/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfCompressor.cpp.obj
[297/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\Iex\IexBaseExc.cpp.obj
[298/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDeepImageStateAttribute.cpp.obj
[299/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDeepScanLineOutputPart.cpp.obj
[300/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfCRgbaFile.cpp.obj
[301/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfFramesPerSecond.cpp.obj
[302/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\Iex\IexThrowErrnoExc.cpp.obj
[303/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDoubleAttribute.cpp.obj
[304/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDeepScanLineInputPart.cpp.obj
[305/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDeepFrameBuffer.cpp.obj
[306/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDeepTiledOutputPart.cpp.obj
[307/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDeepTiledInputPart.cpp.obj
[308/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfEnvmapAttribute.cpp.obj
[309/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfCompositeDeepScanLine.cpp.obj
[310/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfFloatAttribute.cpp.obj
[311/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfEnvmap.cpp.obj
[312/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfFastHuf.cpp.obj
[313/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfFloatVectorAttribute.cpp.obj
[314/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfFrameBuffer.cpp.obj
[315/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfHuf.cpp.obj
[316/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfGenericOutputFile.cpp.obj
[317/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDeepScanLineOutputFile.cpp.obj
[318/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfIO.cpp.obj
[319/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfInputPart.cpp.obj
[320/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfGenericInputFile.cpp.obj
[321/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfKeyCode.cpp.obj
[322/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfInputPartData.cpp.obj
[323/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfIntAttribute.cpp.obj
[324/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfKeyCodeAttribute.cpp.obj
[325/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfLineOrderAttribute.cpp.obj
[326/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfLut.cpp.obj
[327/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfMatrixAttribute.cpp.obj
[328/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDeepScanLineInputFile.cpp.obj
[329/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfRational.cpp.obj
[330/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDeepTiledInputFile.cpp.obj
[331/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfHeader.cpp.obj
[332/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfOpaqueAttribute.cpp.obj
[333/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfPartType.cpp.obj
[334/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDeepTiledOutputFile.cpp.obj
[335/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfOutputPartData.cpp.obj
[336/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfOutputPart.cpp.obj
[337/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfRle.cpp.obj
[338/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfInputFile.cpp.obj
[339/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfPreviewImage.cpp.obj
[340/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfMultiView.cpp.obj
[341/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfPizCompressor.cpp.obj
[342/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfMultiPartInputFile.cpp.obj
[343/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfSystemSpecific.cpp.obj
[344/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfPreviewImageAttribute.cpp.obj
[345/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfRationalAttribute.cpp.obj
[346/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfPxr24Compressor.cpp.obj
[347/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfRleCompressor.cpp.obj
[348/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfThreading.cpp.obj
[349/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfMisc.cpp.obj
[350/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfMultiPartOutputFile.cpp.obj
[351/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfRgbaYca.cpp.obj
[352/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfOutputFile.cpp.obj
[353/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfTestFile.cpp.obj
[354/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfStringAttribute.cpp.obj
[355/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfRgbaFile.cpp.obj
[356/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfTiledMisc.cpp.obj
[357/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfWav.cpp.obj
[358/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfVersion.cpp.obj
[359/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfStringVectorAttribute.cpp.obj
[360/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmThread\IlmThreadSemaphore.cpp.obj
[361/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfTiledInputPart.cpp.obj
[362/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfTileDescriptionAttribute.cpp.obj
[363/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfStandardAttributes.cpp.obj
[364/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfTiledOutputPart.cpp.obj
[365/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmThread\IlmThreadMutexWin32.cpp.obj
[366/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfVecAttribute.cpp.obj
[367/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfTimeCodeAttribute.cpp.obj
[368/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\Imath\ImathFun.cpp.obj
[369/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmThread\IlmThreadMutex.cpp.obj
[370/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfTimeCode.cpp.obj
[371/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfTileOffsets.cpp.obj
[372/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\Imath\ImathRandom.cpp.obj
[373/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmThread\IlmThreadWin32.cpp.obj
[374/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfDwaCompressor.cpp.obj
[375/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfStdIO.cpp.obj
[376/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_filter_gaussian.c.obj
[377/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_core.c.obj
[378/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_filter_canny.c.obj
[379/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_filter_bilateral.c.obj
[380/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image.c.obj
[381/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfZip.cpp.obj
[382/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfZipCompressor.cpp.obj
[383/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_color_convert_rgbs.c.obj
[384/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfTiledRgbaFile.cpp.obj
[385/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_color_convert_all.c.obj
[386/3598] Building C object 3rdparty\libjpeg-turbo\CMakeFiles\libjpeg-turbo.dir\src\jchuff.c.obj
[387/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_filter_sobel.c.obj
[388/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_filter_scharr.c.obj
[389/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_filter_box.c.obj
[390/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_filter_morphology.c.obj
[391/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_filter_general.c.obj
[392/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_filter_laplacian.c.obj
[393/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\Imath\ImathBox.cpp.obj
[394/3598] Linking C static library 3rdparty\lib\libjpeg-turbo.lib
[395/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_op_copy_channel.c.obj
[396/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_op_set_channel.c.obj
[397/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\Imath\ImathColorAlgo.cpp.obj
[398/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_op_copy_merge.c.obj
[399/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_transform_mirror.c.obj
[400/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_op_copy_split.c.obj
[401/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_op_copy.c.obj
[402/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmThread\IlmThread.cpp.obj
[403/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_op_swap_channels.c.obj
[404/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\Imath\ImathShear.cpp.obj
[405/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\Imath\ImathVec.cpp.obj
[406/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_transform_rotate.c.obj
[407/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_op_scale.c.obj
[408/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_transform_resize.c.obj
[409/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_transform_warpaffine.c.obj
[410/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_op_set.c.obj
[411/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\dwaLookups.cpp.obj
[412/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_image_op_copy_make_border.c.obj
[413/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfScanLineInputFile.cpp.obj
[414/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfTiledInputFile.cpp.obj
[415/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmThread\IlmThreadSemaphoreWin32.cpp.obj
[416/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\Imath\ImathMatrixAlgo.cpp.obj
[417/3598] Building C object 3rdparty\ippiw\CMakeFiles\ippiw.dir\src\iw_own.c.obj
[418/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmImf\ImfTiledOutputFile.cpp.obj
[419/3598] Linking C static library 3rdparty\lib\ippiw.lib
[420/3598] Building CXX object 3rdparty\openexr\CMakeFiles\IlmImf.dir\IlmThread\IlmThreadPool.cpp.obj
[421/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\io\zero_copy_stream.cc.obj
[422/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\io\zero_copy_stream_impl.cc.obj
[423/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\arena.cc.obj
[424/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj
[425/3598] Linking CXX static library 3rdparty\lib\IlmImf.lib
[426/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\io\strtod.cc.obj
[427/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\io\coded_stream.cc.obj
[428/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\any_lite.cc.obj
[429/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\arenastring.cc.obj
[430/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\stubs\stringpiece.cc.obj
[431/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\implicit_weak_message.cc.obj
[432/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\repeated_ptr_field.cc.obj
[433/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\io\io_win32.cc.obj
[434/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\stubs\common.cc.obj
[435/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\stubs\int128.cc.obj
[436/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\parse_context.cc.obj
[437/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\map.cc.obj
[438/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\stubs\bytestream.cc.obj
[439/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\stubs\stringprintf.cc.obj
[440/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\message_lite.cc.obj
[441/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\stubs\structurally_valid.cc.obj
[442/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\stubs\status.cc.obj
[443/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\repeated_field.cc.obj
[444/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\generated_message_util.cc.obj
[445/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\extension_set.cc.obj
[446/3598] Building C object 3rdparty\quirc\CMakeFiles\quirc.dir\src\quirc.c.obj
[447/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\stubs\strutil.cc.obj
[448/3598] Building C object 3rdparty\quirc\CMakeFiles\quirc.dir\src\decode.c.obj
[449/3598] Building C object 3rdparty\quirc\CMakeFiles\quirc.dir\src\version_db.c.obj
[450/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\any.cc.obj
[451/3598] Linking C static library 3rdparty\lib\quirc.lib
[452/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\wire_format_lite.cc.obj
[453/3598] Building C object 3rdparty\ittnotify\CMakeFiles\ittnotify.dir\src\ittnotify\jitprofiling.c.obj
[454/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\stubs\substitute.cc.obj
[455/3598] Building C object 3rdparty\ittnotify\CMakeFiles\ittnotify.dir\src\ittnotify\ittnotify_static.c.obj
[456/3598] Linking C static library 3rdparty\lib\ittnotify.lib
[457/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\io\tokenizer.cc.obj
[458/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\unknown_field_set.cc.obj
[459/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\dynamic_message.cc.obj
[460/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\reflection_ops.cc.obj
[461/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\extension_set_heavy.cc.obj
[462/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\generated_message_reflection.cc.obj
[463/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\map_field.cc.obj
[464/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\message.cc.obj
[465/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\descriptor.pb.cc.obj
[466/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\descriptor_database.cc.obj
[467/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\wire_format.cc.obj
[468/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\text_format.cc.obj
[469/3598] Building CXX object 3rdparty\protobuf\CMakeFiles\libprotobuf.dir\src\google\protobuf\descriptor.cc.obj
[470/3598] Linking CXX static library 3rdparty\lib\libprotobuf.lib
[471/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_blend.cu.obj
blend.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
blend.cu
[472/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_build_point_list.cu.obj
build_point_list.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
build_point_list.cu
[473/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_canny.cu.obj
canny.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(112): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(248): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(267): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\canny.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
canny.cu
[474/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_clahe.cu.obj
clahe.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
clahe.cu
[475/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_add_mat.cu.obj
add_mat.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
add_mat.cu
[476/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_absdiff_mat.cu.obj
absdiff_mat.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
absdiff_mat.cu
[477/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_bilateral_filter.cu.obj
bilateral_filter.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
bilateral_filter.cu
[478/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_absdiff_scalar.cu.obj
absdiff_scalar.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
absdiff_scalar.cu
[479/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/core/src/cuda/cuda_compile_1_generated_gpu_mat_nd.cu.obj
gpu_mat_nd.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
gpu_mat_nd.cu
[480/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/core/src/cuda/cuda_compile_1_generated_gpu_mat.cu.obj
gpu_mat.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
gpu_mat.cu
[481/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_color.cu.obj
color.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
color.cu
[482/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_countnonzero.cu.obj
countnonzero.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
countnonzero.cu
[483/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.16uc1.cu.obj
row_filter.16uc1.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.16uc1.cu
[484/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.32fc1.cu.obj
row_filter.32fc1.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.32fc1.cu
[485/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.32sc1.cu.obj
row_filter.32sc1.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.32sc1.cu
[486/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.16sc1.cu.obj
row_filter.16sc1.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.16sc1.cu
[487/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_cmp_mat.cu.obj
cmp_mat.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
cmp_mat.cu
[488/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.8uc1.cu.obj
row_filter.8uc1.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.8uc1.cu
[489/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_cmp_scalar.cu.obj
cmp_scalar.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
cmp_scalar.cu
[490/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_bitwise_scalar.cu.obj
bitwise_scalar.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
bitwise_scalar.cu
[491/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_add_scalar.cu.obj
add_scalar.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
add_scalar.cu
[492/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_bitwise_mat.cu.obj
bitwise_mat.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
bitwise_mat.cu
[493/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_lut.cu.obj
lut.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
lut.cu
[494/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_in_range.cu.obj
in_range.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
in_range.cu
[495/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_integral.cu.obj
integral.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
integral.cu
[496/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_copy_make_border.cu.obj
copy_make_border.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
copy_make_border.cu
[497/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_math.cu.obj
math.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
math.cu
[498/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_div_mat.cu.obj
div_mat.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
div_mat.cu
[499/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_minmax_mat.cu.obj
minmax_mat.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
minmax_mat.cu
[500/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.32fc4.cu.obj
row_filter.32fc4.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.32fc4.cu
[501/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.16uc4.cu.obj
row_filter.16uc4.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.16uc4.cu
[502/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.16sc4.cu.obj
row_filter.16sc4.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.16sc4.cu
[503/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.32sc4.cu.obj
row_filter.32sc4.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.32sc4.cu
[504/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_mul_mat.cu.obj
mul_mat.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
mul_mat.cu
[505/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_add_weighted.cu.obj
add_weighted.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
add_weighted.cu
[506/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_div_scalar.cu.obj
div_scalar.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
div_scalar.cu
[507/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.8uc4.cu.obj
row_filter.8uc4.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.8uc4.cu
[508/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.32fc3.cu.obj
row_filter.32fc3.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.32fc3.cu
[509/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.16sc3.cu.obj
row_filter.16sc3.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.16sc3.cu
[510/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.16uc3.cu.obj
row_filter.16uc3.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.16uc3.cu
[511/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_minmaxloc.cu.obj
minmaxloc.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
minmaxloc.cu
[512/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.8uc3.cu.obj
row_filter.8uc3.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.8uc3.cu
[513/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_mul_spectrums.cu.obj
mul_spectrums.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
mul_spectrums.cu
[514/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_row_filter.32sc3.cu.obj
row_filter.32sc3.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
row_filter.32sc3.cu
[515/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_norm.cu.obj
norm.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
norm.cu
[516/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_minmax.cu.obj
minmax.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
minmax.cu
[517/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_mul_scalar.cu.obj
mul_scalar.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
mul_scalar.cu
[518/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_polar_cart.cu.obj
polar_cart.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
polar_cart.cu
[519/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_split_merge.cu.obj
split_merge.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
split_merge.cu
[520/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_transpose.cu.obj
transpose.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
transpose.cu
[521/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_sub_mat.cu.obj
sub_mat.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
sub_mat.cu
[522/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_threshold.cu.obj
threshold.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
threshold.cu
[523/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_normalize.cu.obj
normalize.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
normalize.cu
[524/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_median_filter.cu.obj
median_filter.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
median_filter.cu
[525/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_filter2d.cu.obj
filter2d.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
filter2d.cu
[526/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_sub_scalar.cu.obj
sub_scalar.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
sub_scalar.cu
[527/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_corners.cu.obj
corners.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(84): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(85): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(189): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(122): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(123): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerHarris_kernel(int, float, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(150): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect101<void>, BC=cv::cuda::device::BrdColReflect101<void>]" 
(258): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(231): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\corners.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "void cv::cuda::device::imgproc::cornerMinEigenVal_kernel(int, cv::cuda::PtrStepSzf, BR, BC) [with BR=cv::cuda::device::BrdRowReflect<void>, BC=cv::cuda::device::BrdColReflect<void>]" 
(262): here

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
corners.cu
[528/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_generalized_hough.cu.obj
generalized_hough.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
generalized_hough.cu
[529/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_sum.cu.obj
sum.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
sum.cu
[530/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_hist.cu.obj
hist.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
hist.cu
[531/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_debayer.cu.obj
debayer.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=1]" 
(539): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar3]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=3]" 
(540): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(429): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(430): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(431): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(432): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(435): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(437): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(438): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(441): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(442): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(443): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\debayer.cu(444): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void cv::cuda::device::MHCdemosaic(cv::cuda::PtrStepSz<DstType>, int2, int2) [with DstType=uchar4]" 
(532): here
            instantiation of "void cv::cuda::device::MHCdemosaic<cn>(cv::cuda::PtrStepSzb, int2, cv::cuda::PtrStepSzb, int2, cudaStream_t) [with cn=4]" 
(541): here

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
debayer.cu
[532/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_connectedcomponents.cu.obj
connectedcomponents.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
connectedcomponents.cu
[533/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_hough_circles.cu.obj
hough_circles.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
hough_circles.cu
[534/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.16sc1.cu.obj
column_filter.16sc1.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.16sc1.cu
[535/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.16uc1.cu.obj
column_filter.16uc1.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.16uc1.cu
[536/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudawarping/src/cuda/cuda_compile_1_generated_pyr_up.cu.obj
pyr_up.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
pyr_up.cu
[537/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_gftt.cu.obj
gftt.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
gftt.cu
[538/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.32fc1.cu.obj
column_filter.32fc1.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.32fc1.cu
[539/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.32sc1.cu.obj
column_filter.32sc1.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.32sc1.cu
[540/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_match_template.cu.obj
match_template.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
match_template.cu
[541/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.8uc1.cu.obj
column_filter.8uc1.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.8uc1.cu
[542/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_mean_shift.cu.obj
mean_shift.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(62): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\cuda\mean_shift.cu(82): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
mean_shift.cu
[543/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudawarping/src/cuda/cuda_compile_1_generated_pyr_down.cu.obj
pyr_down.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
pyr_down.cu
[544/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_hough_segments.cu.obj
hough_segments.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
hough_segments.cu
[545/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaarithm/src/cuda/cuda_compile_1_generated_reduce.cu.obj
reduce.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
reduce.cu
[546/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_bias_activation.cu.obj
bias_activation.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
bias_activation.cu
[547/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_bias_activation_eltwise.cu.obj
bias_activation_eltwise.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
bias_activation_eltwise.cu
[548/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_activation_eltwise.cu.obj
activation_eltwise.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
activation_eltwise.cu
[549/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_bias_eltwise_activation.cu.obj
bias_eltwise_activation.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
bias_eltwise_activation.cu
[550/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_activations.cu.obj
activations.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
activations.cu
[551/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_fill_copy.cu.obj
fill_copy.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
fill_copy.cu
[552/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudawarping/src/cuda/cuda_compile_1_generated_resize.cu.obj
resize.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(155): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(156): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(158): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(159): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(161): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(162): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(164): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\resize.cu(165): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
resize.cu
[553/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_crop_and_resize.cu.obj
crop_and_resize.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
crop_and_resize.cu
[554/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_eltwise_activation.cu.obj
eltwise_activation.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
eltwise_activation.cu
[555/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_fp_conversion.cu.obj
fp_conversion.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
fp_conversion.cu
[556/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_concat.cu.obj
concat.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
concat.cu
[557/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.16sc4.cu.obj
column_filter.16sc4.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.16sc4.cu
[558/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaimgproc/src/cuda/cuda_compile_1_generated_hough_lines.cu.obj
hough_lines.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
hough_lines.cu
[559/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.16sc3.cu.obj
column_filter.16sc3.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.16sc3.cu
[560/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.16uc4.cu.obj
column_filter.16uc4.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.16uc4.cu
[561/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_eltwise_ops.cu.obj
eltwise_ops.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
eltwise_ops.cu
[562/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_detection_output.cu.obj
detection_output.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
detection_output.cu
D:\opencv\opencv-4.6.0\modules\dnn\src\cuda\detection_output.cu(707): warning C4805: '|': unsafe mix of type 'int' and type 'bool' in operation
D:\opencv\opencv-4.6.0\modules\dnn\src\cuda\detection_output.cu(711): note: see reference to function template instantiation 'void cv::dnn::cuda4dnn::kernels::decode_bboxes<__half>(const cv::dnn::cuda4dnn::csl::Stream &,cv::dnn::cuda4dnn::csl::Span<__half>,cv::dnn::cuda4dnn::csl::Span<const __half>,cv::dnn::cuda4dnn::csl::Span<const __half>,size_t,bool,size_t,bool,bool,bool,bool,bool,float,float)' being compiled
[563/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_max_unpooling.cu.obj
max_unpooling.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
max_unpooling.cu
[564/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.32fc4.cu.obj
column_filter.32fc4.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.32fc4.cu
[565/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_padding.cu.obj
padding.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
padding.cu
[566/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudawarping/src/cuda/cuda_compile_1_generated_remap.cu.obj
remap.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(168): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(170): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(176): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(178): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(180): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(182): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(188): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\remap.cu(190): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
remap.cu
[567/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.16uc3.cu.obj
column_filter.16uc3.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.16uc3.cu
[568/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_prior_box.cu.obj
prior_box.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
prior_box.cu
[569/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.32fc3.cu.obj
column_filter.32fc3.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.32fc3.cu
[570/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_normalize.cu.obj
normalize.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
normalize.cu
[571/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.8uc4.cu.obj
column_filter.8uc4.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.8uc4.cu
[572/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_permute.cu.obj
permute.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
permute.cu
[573/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_mvn.cu.obj
mvn.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
mvn.cu
[574/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.32sc3.cu.obj
column_filter.32sc3.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.32sc3.cu
[575/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_region.cu.obj
region.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
region.cu
[576/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_grid_nms.cu.obj
grid_nms.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
grid_nms.cu
[577/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_roi_pooling.cu.obj
roi_pooling.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
roi_pooling.cu
[578/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/hfs/src/cuda/cuda_compile_1_generated_gslic_seg_engine_gpu.cu.obj
gslic_seg_engine_gpu.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
gslic_seg_engine_gpu.cu
[579/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudacodec/src/cuda/cuda_compile_1_generated_rgb_to_yv12.cu.obj
rgb_to_yv12.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
rgb_to_yv12.cu
[580/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_shortcut.cu.obj
shortcut.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
shortcut.cu
[581/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_slice.cu.obj
slice.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
slice.cu
[582/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_scale_shift.cu.obj
scale_shift.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
scale_shift.cu
[583/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/hfs/src/cuda/cuda_compile_1_generated_magnitude.cu.obj
magnitude.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1274): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1288): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1290): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1297): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(1299): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/imgproc/include\opencv2/imgproc.hpp(4941): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv-4.6.0\modules\imgproc\include\opencv2\./imgproc/segmentation.hpp(132): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
magnitude.cu
[584/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudacodec/src/cuda/cuda_compile_1_generated_nv12_to_rgb.cu.obj
nv12_to_rgb.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nv12_to_rgb.cu
[585/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/dnn/src/cuda/cuda_compile_1_generated_resize.cu.obj
resize.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
resize.cu
[586/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafeatures2d/src/cuda/cuda_compile_1_generated_fast.cu.obj
fast.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
fast.cu
[587/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.8uc3.cu.obj
column_filter.8uc3.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.8uc3.cu
[588/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/cuda_compile_1_generated_disparity_bilateral_filter.cu.obj
disparity_bilateral_filter.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
disparity_bilateral_filter.cu
[589/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafilters/src/cuda/cuda_compile_1_generated_column_filter.32sc4.cu.obj
column_filter.32sc4.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
column_filter.32sc4.cu
[590/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/photo/src/cuda/cuda_compile_1_generated_nlm.cu.obj
nlm.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nlm.cu
[591/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/cuda_compile_1_generated_stereobp.cu.obj
stereobp.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
stereobp.cu
[592/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/cuda_compile_1_generated_util.cu.obj
util.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
util.cu
[593/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudabgsegm/src/cuda/cuda_compile_1_generated_mog.cu.obj
mog.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
mog.cu
[594/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_calib3d.cu.obj
calib3d.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
calib3d.cu
[595/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_bm.cu.obj
bm.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\bm.cu(65): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
bm.cu
[596/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_NCV.cu.obj
NCV.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
NCV.cu
[597/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudabgsegm/src/cuda/cuda_compile_1_generated_mog2.cu.obj
mog2.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
mog2.cu
[598/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_NCVBroxOpticalFlow.cu.obj
NCVBroxOpticalFlow.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(421): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(422): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(423): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(424): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(425): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(426): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(427): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(428): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(489): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(490): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(502): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(514): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=0]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=0]" 
(411): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=1]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=1]" 
(412): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=2]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=2]" 
(413): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(284): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(287): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(290): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void load_array_element<tex_id>(float *, int, int, int, int, int, int, int) [with tex_id=3]" 
(309): here
            instantiation of "void load_array<tex>(float *, int, int, int, int, int) [with tex=3]" 
(414): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=0]" 
(1069): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(563): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(564): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(566): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(570): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(580): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(581): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(582): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(583): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(584): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(586): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(587): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(588): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(589): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(590): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(592): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(593): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(594): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(595): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(598): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(599): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(600): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(601): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVBroxOpticalFlow.cu(602): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during instantiation of "void sor_pass<isBlack>(float *, float *, const float *, const float *, const float *, const float *, const float *, float, int, int, int) [with isBlack=1]" 
(1087): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
NCVBroxOpticalFlow.cu
[599/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_NCVPyramid.cu.obj
NCVPyramid.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
NCVPyramid.cu
[600/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/xfeatures2d/src/cuda/cuda_compile_1_generated_surf.cu.obj
surf.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(272): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(273): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(275): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(732): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=3]" 
(225): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=4]" 
(227): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(172): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(173): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(174): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

D:\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\cuda\surf.cu(175): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=unsigned int]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during instantiation of "float cv::cuda::device::surf::icvCalcHaarPatternSum<N>(const float (*)[5], int, int, int, int) [with N=2]" 
(579): here

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
surf.cu
[601/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_ccomponetns.cu.obj
ccomponetns.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
ccomponetns.cu
[602/3598] Processing OpenCL kernels (core)
[603/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/cuda_compile_1_generated_stereocsbp.cu.obj
stereocsbp.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
stereocsbp.cu
[604/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_bm_fast.cu.obj
bm_fast.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
bm_fast.cu
[605/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaoptflow/src/cuda/cuda_compile_1_generated_nvidiaOpticalFlow.cu.obj
nvidiaOpticalFlow.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvidiaOpticalFlow.cu
[606/3598] Processing OpenCL kernels (dnn)
[607/3598] Processing OpenCL kernels (imgproc)
[608/3598] Processing OpenCL kernels (video)
[609/3598] Processing OpenCL kernels (rgbd)
[610/3598] Processing OpenCL kernels (objdetect)
[611/3598] Processing OpenCL kernels (photo)
[612/3598] Processing OpenCL kernels (calib3d)
[613/3598] Processing OpenCL kernels (features2d)
[614/3598] Processing OpenCL kernels (tracking)
[615/3598] Processing OpenCL kernels (bioinspired)
[616/3598] Processing OpenCL kernels (ximgproc)
[617/3598] Processing OpenCL kernels (superres)
[618/3598] Processing OpenCL kernels (stitching)
[619/3598] Processing OpenCL kernels (xfeatures2d)
[620/3598] Processing OpenCL kernels (optflow)
[621/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafeatures2d/src/cuda/cuda_compile_1_generated_bf_radius_match.cu.obj
bf_radius_match.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
bf_radius_match.cu
[622/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_gmg.cu.obj
gmg.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
gmg.cu
[623/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/stitching/src/cuda/cuda_compile_1_generated_multiband_blend.cu.obj
multiband_blend.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
multiband_blend.cu
[624/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaobjdetect/src/cuda/cuda_compile_1_generated_lbp.cu.obj
lbp.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
lbp.cu
[625/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_NPP_staging.cu.obj
NPP_staging.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(126): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv8u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(596): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1567): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1578): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1610): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1642): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1836): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1835): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1841): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(1846): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2273): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2277): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2281): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(2436): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=false]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=false]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=false]" 
(902): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(784): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemSum<tbCacheTexture>(Ncv32u, Ncv32u *) [with tbCacheTexture=true]" 
(827): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(798): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv64u getElemSqSum<tbCacheTexture>(Ncv32u, Ncv64u *) [with tbCacheTexture=true]" 
(834): here
            instantiation of "void rectStdDev_32f_C1R<tbCacheTexture>(Ncv32u *, Ncv32u, Ncv64u *, Ncv32u, Ncv32f *, Ncv32u, NcvSize32u, NcvRect32u, Ncv32f) [with tbCacheTexture=true]" 
(920): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
NPP_staging.cu
D:\opencv\opencv_contrib-4.6.0\modules\cudev\include\opencv2\cudev\grid\detail/integral.hpp(150): warning C4459: declaration of 'NUM_SCAN_THREADS' hides global declaration
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NPP_staging.cu(90): note: see declaration of 'NUM_SCAN_THREADS'
D:\opencv\opencv_contrib-4.6.0\modules\cudev\include\opencv2\cudev\grid\detail/integral.hpp(611): note: see reference to function template instantiation 'void cv::cudev::integral_detail::horizontal_pass<cv::cudev::GlobPtr<unsigned char>,unsigned int>(const SrcPtr &,const cv::cudev::GlobPtr<unsigned int> &,int,int,cudaStream_t)' being compiled
        with
        [
            SrcPtr=cv::cudev::GlobPtr<unsigned char>
        ]
[626/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_needle_map.cu.obj
needle_map.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
needle_map.cu
[627/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/stitching/src/cuda/cuda_compile_1_generated_build_warp_maps.cu.obj
build_warp_maps.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
build_warp_maps.cu
[628/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaoptflow/src/cuda/cuda_compile_1_generated_farneback.cu.obj
farneback.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
farneback.cu
[629/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_fgd.cu.obj
fgd.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
fgd.cu
[630/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudalegacy/src/cuda/cuda_compile_1_generated_NCVHaarObjectDetection.cu.obj
NCVHaarObjectDetection.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=true]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=true]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=true]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(161): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=Ncv32u]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "Ncv32u getElemIImg<tbCacheTextureIImg>(Ncv32u, Ncv32u *) [with tbCacheTextureIImg=false]" 
(322): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=false, tbCacheTextureCascade=true, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(127): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "HaarClassifierNode128 getClassifierNode<tbCacheTextureCascade>(Ncv32u, HaarClassifierNode128 *) [with tbCacheTextureCascade=false]" 
(302): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVHaarObjectDetection.cu(145): warning #1215-D: function "tex1Dfetch(texture<T, 1, cudaReadModeElementType>, int) [with T=uint2]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(132): here was declared deprecated
          detected during:
            instantiation of "void getFeature<tbCacheTextureCascade>(Ncv32u, HaarFeature64 *, Ncv32f *, Ncv32u *, Ncv32u *, Ncv32u *, Ncv32u *) [with tbCacheTextureCascade=false]" 
(315): here
            instantiation of "void applyHaarClassifierAnchorParallel<tbInitMaskPositively,tbCacheTextureIImg,tbCacheTextureCascade,tbReadPixelIndexFromVector,tbDoAtomicCompaction>(Ncv32u *, Ncv32u, Ncv32f *, Ncv32u, HaarFeature64 *, HaarClassifierNode128 *, HaarStage64 *, Ncv32u *, Ncv32u *, Ncv32u, Ncv32u, NcvSize32u, Ncv32u, Ncv32u, Ncv32f) [with tbInitMaskPositively=true, tbCacheTextureIImg=true, tbCacheTextureCascade=false, tbReadPixelIndexFromVector=true, tbDoAtomicCompaction=true]" 
(645): here
            instantiation of "void applyHaarClassifierAnchorParallelFunctor::call(TList) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(216): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, 0, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>>, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>>, NumArguments=1, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<0>, Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>>, NumArguments=2, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(197): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>>, NumArguments=3, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::Typelist<Loki::Int2Type<1>, Loki::NullType>, NumArguments=4, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(190): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func &, std::vector<int, std::allocator<int>> &) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
D:\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\cuda\NCVRuntimeTemplates.hpp(171): here
            instantiation of "void NCVRuntimeTemplateBool::KernelCaller<TList, NumArguments, Func>::call(Func *, ...) [with TList=Loki::NullType, NumArguments=5, Func=applyHaarClassifierAnchorParallelFunctor]" 
(678): here

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(339): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(596): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(602): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(605): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(626): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect.hpp(840): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(162): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(179): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(205): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(207): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(208): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/objdetect/include\opencv2/objdetect/detection_based_tracker.hpp(210): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
NCVHaarObjectDetection.cu
[631/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaobjdetect/src/cuda/cuda_compile_1_generated_hog.cu.obj
hog.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(837): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cuda\hog.cu(847): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
hog.cu
[632/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/superres/src/cuda/cuda_compile_1_generated_btv_l1_gpu.cu.obj
btv_l1_gpu.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
btv_l1_gpu.cu
[633/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaoptflow/src/cuda/cuda_compile_1_generated_tvl1flow.cu.obj
tvl1flow.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(121): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(125): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\tvl1flow.cu(129): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
tvl1flow.cu
[634/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafeatures2d/src/cuda/cuda_compile_1_generated_bf_match.cu.obj
bf_match.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
bf_match.cu
[635/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/videostab/src/cuda/cuda_compile_1_generated_global_motion.cu.obj
global_motion.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
global_motion.cu
[636/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudawarping/src/cuda/cuda_compile_1_generated_warp.cu.obj
warp.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(254): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(256): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(262): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(264): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(268): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=short4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(274): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\cuda\warp.cu(276): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
warp.cu
[637/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/cuda_compile_1_generated_stereosgm.cu.obj
stereosgm.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/calib3d/include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/calib3d/include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/calib3d/include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/calib3d/include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/calib3d/include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/calib3d/include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/calib3d/include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/calib3d/include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/calib3d/include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/calib3d/include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(552): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(554): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/types.hpp(793): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(581): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2731): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(2732): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/mat.hpp(3599): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(463): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/persistence.hpp(466): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(118): warning #1388-D: base class dllexport/dllimport specification differs from that of the derived class

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(138): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(141): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(142): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core.hpp(143): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(519): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(524): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(530): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(704): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(908): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/core/include\opencv2/core/cuda.hpp(944): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1154): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1172): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1173): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1259): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1260): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1261): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1423): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1525): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/features2d/include\opencv2/features2d.hpp(1526): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

D:/opencv/opencv-4.6.0/modules/calib3d/include\opencv2/calib3d.hpp(1412): warning #1394-D: field of class type without a DLL interface used in a class with a DLL interface

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
stereosgm.cu
[638/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafeatures2d/src/cuda/cuda_compile_1_generated_orb.cu.obj
orb.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
orb.cu
[639/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudafeatures2d/src/cuda/cuda_compile_1_generated_bf_knnmatch.cu.obj
bf_knnmatch.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
bf_knnmatch.cu
[640/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudastereo/src/cuda/cuda_compile_1_generated_stereobm.cu.obj
stereobm.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(609): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(610): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\cuda\stereobm.cu(608): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=unsigned char]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
stereobm.cu
[641/3598] Building NVCC (Device) object modules/world/CMakeFiles/cuda_compile_1.dir/__/__/__/opencv_contrib-4.6.0/modules/cudaoptflow/src/cuda/cuda_compile_1_generated_pyrlk.cu.obj
pyrlk.cu
nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(100): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(133): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(191): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(202): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(213): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(232): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(243): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(255): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=uchar4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(266): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeNormalizedFloat>, float, float) [with T=ushort4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(209): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(277): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float4]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=true]" 
(1132): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(928): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(932): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(933): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(935): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(936): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1007): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

D:\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\cuda\pyrlk.cu(1043): warning #1215-D: function "tex2D(texture<T, 2, cudaReadModeElementType>, float, float) [with T=float]"
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\include\texture_fetch_functions.h(198): here was declared deprecated
          detected during:
            instantiation of "void pyrlk::denseKernel<calcErr>(cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, cv::cuda::PtrStepf, int, int) [with calcErr=false]" 
(1137): here
            instantiation of "void pyrlk::pyrLK_caller<T, cn>::dense(cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSz<T>, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, cv::cuda::PtrStepSzf, int2, cudaStream_t) [with T=unsigned char, cn=1]" 
(1146): here

nvcc warning : The 'compute_35', 'compute_37', 'sm_35', and 'sm_37' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
pyrlk.cu
[642/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_cuda.cpp.obj
[643/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_main.cpp.obj
[644/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\ocl\test_image2d.cpp.obj
[645/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_lut.cpp.obj
[646/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_concatenation.cpp.obj
[647/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_merge.cpp.obj
[648/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_dxt.cpp.obj
[649/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_async.cpp.obj
[650/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_conjugate_gradient.cpp.obj
[651/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_downhill_simplex.cpp.obj
[652/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_ds.cpp.obj
[653/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_io_base64.cpp.obj
[654/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\ocl\test_gemm.cpp.obj
[655/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_math.cpp.obj
[656/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\ocl\test_matrix_expr.cpp.obj
[657/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_countnonzero.cpp.obj
[658/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\ocl\test_opencl.cpp.obj
[659/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\ocl\test_dft.cpp.obj
[660/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\ocl\test_matrix_operation.cpp.obj
[661/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_mat.cpp.obj
[662/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\ocl\test_channels.cpp.obj
[663/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_main.cpp.obj
[664/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_lpsolver.cpp.obj
[665/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_eigen.cpp.obj
[666/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_hal_core.cpp.obj
[667/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_rand.cpp.obj
[668/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_arithm.cpp.obj
[669/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_rotatedrect.cpp.obj
[670/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_opencl.cpp.obj
[671/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_misc.cpp.obj
[672/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\ocl\test_arithm.cpp.obj
[673/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_ptr.cpp.obj
[674/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_io.cpp.obj
[675/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_logtagconfigparser.cpp.obj
[676/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_logtagmanager.cpp.obj
[677/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_mat.cpp.obj
[678/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_utils.cpp.obj
[679/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_quaternion.cpp.obj
[680/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_math.cpp.obj
[681/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin128.sse4_2.cpp.obj
[682/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_umat.cpp.obj
[683/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_minmaxloc.cpp.obj
[684/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_intrin.cpp.obj
[685/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\opencl\perf_channels.cpp.obj
[686/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\cuda\perf_gpumat.cpp.obj
[687/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\opencl\perf_gemm.cpp.obj
[688/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\opencl\perf_bufferpool.cpp.obj
[689/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_operations.cpp.obj
[690/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_abs.cpp.obj
[691/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\opencl\perf_usage_flags.cpp.obj
[692/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_norm.cpp.obj
[693/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\opencl\perf_dxt.cpp.obj
[694/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_bitwise.cpp.obj
[695/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\opencl\perf_matop.cpp.obj
[696/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_compare.cpp.obj
[697/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_allocation.cpp.obj
[698/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_addWeighted.cpp.obj
[699/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_convertTo.cpp.obj
[700/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_arithm.cpp.obj
[701/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\opencl\perf_arithm.cpp.obj
[702/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_cvround.cpp.obj
[703/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_dot.cpp.obj
[704/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_inRange.cpp.obj
[705/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_dft.cpp.obj
[706/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_stat.cpp.obj
[707/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_reduce.cpp.obj
[708/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\test\test_buffer_pool.cpp.obj
[709/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_umat.cpp.obj
[710/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_split.cpp.obj
[711/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin128.sse2.cpp.obj
[712/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_core.dir\__\core\perf\perf_sort.cpp.obj
[713/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin128.sse3.cpp.obj
[714/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\test\test_arithm.cpp.obj
[715/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin128.avx.cpp.obj
[716/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\test\test_stream.cpp.obj
[717/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\test\test_main.cpp.obj
[718/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin128.fp16.cpp.obj
[719/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\test\test_event.cpp.obj
[720/3598] Building CXX object modules\world\CMakeFiles\opencv_test_flann.dir\__\flann\test\test_main.cpp.obj
[721/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\perf\perf_main.cpp.obj
[722/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin128.avx2.cpp.obj
[723/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin128.ssse3.cpp.obj
[724/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\test\test_core.cpp.obj
[725/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_accumulate.cpp.obj
[726/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\test\test_opengl.cpp.obj
[727/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\perf\perf_core.cpp.obj
[728/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\perf\perf_arithm.cpp.obj
[729/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin128.avx512_skx.cpp.obj
[730/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_accumulate.cpp.obj
[731/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin512.avx512_skx.cpp.obj
[732/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_boxfilter.cpp.obj
[733/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\test\test_gpumat.cpp.obj
[734/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_blend.cpp.obj
[735/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin128.sse4_1.cpp.obj
[736/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\__\core\test\test_intrin_emulator.cpp.obj
[737/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin256.avx512_skx.cpp.obj
[738/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\perf\perf_reductions.cpp.obj
[739/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_canny.cpp.obj
[740/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_houghlines.cpp.obj
[741/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_histogram.cpp.obj
[742/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_match_template.cpp.obj
[743/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_bilateral_filter.cpp.obj
[744/3598] Building CXX object modules\world\CMakeFiles\opencv_test_flann.dir\__\flann\test\test_lshtable_badarg.cpp.obj
[745/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_gftt.cpp.obj
[746/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_filter2d.cpp.obj
[747/3598] Building CXX object modules\world\CMakeFiles\opencv_test_core.dir\test\test_intrin256.avx2.cpp.obj
[748/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_medianfilter.cpp.obj
[749/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_approxpoly.cpp.obj
[750/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_sepfilter2d.cpp.obj
[751/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_boundingrect.cpp.obj
[752/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_canny.cpp.obj
[753/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\test\test_reductions.cpp.obj
[754/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_warp.cpp.obj
[755/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_pyramids.cpp.obj
[756/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_contours.cpp.obj
[757/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_distancetransform.cpp.obj
[758/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_emd.cpp.obj
[759/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_cvtyuv.cpp.obj
[760/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_floodfill.cpp.obj
[761/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_fitellipse_direct.cpp.obj
[762/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_goodfeaturetotrack.cpp.obj
[763/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_fitellipse_ams.cpp.obj
[764/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_fitellipse.cpp.obj
[765/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_color.cpp.obj
[766/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_color.cpp.obj
[767/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_histograms.cpp.obj
[768/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_filters.cpp.obj
[769/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_drawing.cpp.obj
[770/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_connectedcomponents.cpp.obj
[771/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_intelligent_scissors.cpp.obj
[772/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_imgproc_umat.cpp.obj
[773/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_grabcut.cpp.obj
[774/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_convhull.cpp.obj
[775/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_intersectconvexconvex.cpp.obj
[776/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_imgwarp_strict.cpp.obj
[777/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\ocl\test_imgproc.cpp.obj
[778/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_imgwarp.cpp.obj
[779/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_filter.cpp.obj
[780/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_pc.cpp.obj
[781/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_houghcircles.cpp.obj
[782/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_moments.cpp.obj
[783/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_houghlines.cpp.obj
[784/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_main.cpp.obj
[785/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_intersection.cpp.obj
[786/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_subdivision2d.cpp.obj
[787/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_lsd.cpp.obj
[788/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_templmatch.cpp.obj
[789/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_thresh.cpp.obj
[790/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_bilateral.cpp.obj
[791/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_watershed.cpp.obj
[792/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_smooth_bitexact.cpp.obj
[793/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_resize_bitexact.cpp.obj
[794/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_canny.cpp.obj
[795/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\perf\perf_corners.cpp.obj
[796/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_color.cpp.obj
[797/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\test\test_element_operations.cpp.obj
[798/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgproc.dir\__\imgproc\test\test_templmatchmask.cpp.obj
[799/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_contours.cpp.obj
[800/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_blend.cpp.obj
[801/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_3vs4.cpp.obj
[802/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_gftt.cpp.obj
[803/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_accumulate.cpp.obj
[804/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaarithm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\perf\perf_element_operations.cpp.obj
[805/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_blur.cpp.obj
[806/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_matchTemplate.cpp.obj
[807/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_moments.cpp.obj
[808/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_houghcircles.cpp.obj
[809/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_houghlines.cpp.obj
[810/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_integral.cpp.obj
[811/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_main.cpp.obj
[812/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_filter2d.cpp.obj
[813/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_floodfill.cpp.obj
[814/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_distanceTransform.cpp.obj
[815/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_corners.cpp.obj
[816/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_pyramid.cpp.obj
[817/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_phasecorr.cpp.obj
[818/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_morph.cpp.obj
[819/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_matchTemplate.cpp.obj
[820/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_goodFeaturesToTrack.cpp.obj
[821/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_moments.cpp.obj
[822/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_pyramids.cpp.obj
[823/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_houghlines.cpp.obj
[824/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_histogram.cpp.obj
[825/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_imgwarp.cpp.obj
[826/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_cvt_color.cpp.obj
[827/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_imgproc.cpp.obj
[828/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_threshold.cpp.obj
[829/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\opencl\perf_filters.cpp.obj
[830/3598] Building CXX object modules\world\CMakeFiles\example_intensity_transform_intensity_transform.dir\D_\opencv\opencv_contrib-4.6.0\modules\intensity_transform\samples\intensity_transform.cpp.obj
[831/3598] Building CXX object modules\world\CMakeFiles\opencv_test_intensity_transform.dir\D_\opencv\opencv_contrib-4.6.0\modules\intensity_transform\test\test_main.cpp.obj
[832/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_rtrees.cpp.obj
[833/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_bayes.cpp.obj
[834/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_main.cpp.obj
[835/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_kmeans.cpp.obj
[836/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_svmtrainauto.cpp.obj
[837/3598] Building CXX object modules\world\CMakeFiles\opencv_test_phase_unwrapping.dir\D_\opencv\opencv_contrib-4.6.0\modules\phase_unwrapping\test\test_main.cpp.obj
[838/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_knearest.cpp.obj
[839/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_em.cpp.obj
[840/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_utils.cpp.obj
[841/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_lr.cpp.obj
[842/3598] Building CXX object modules\world\CMakeFiles\example_phase_unwrapping_unwrap.dir\D_\opencv\opencv_contrib-4.6.0\modules\phase_unwrapping\samples\unwrap.cpp.obj
[843/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_remap.cpp.obj
[844/3598] Building CXX object modules\world\CMakeFiles\opencv_test_intensity_transform.dir\D_\opencv\opencv_contrib-4.6.0\modules\intensity_transform\test\test_intensity_transform.cpp.obj
[845/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_spatialgradient.cpp.obj
[846/3598] Building CXX object modules\world\CMakeFiles\opencv_test_phase_unwrapping.dir\D_\opencv\opencv_contrib-4.6.0\modules\phase_unwrapping\test\test_unwrapping.cpp.obj
[847/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_svmsgd.cpp.obj
[848/3598] Building CXX object modules\world\CMakeFiles\example_plot_plot_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\plot\samples\plot_demo.cpp.obj
[849/3598] Building CXX object modules\world\CMakeFiles\opencv_test_quality.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\test\test_main.cpp.obj
[850/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_warp.cpp.obj
[851/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_ann.cpp.obj
[852/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_save_load.cpp.obj
[853/3598] Building CXX object modules\world\CMakeFiles\opencv_test_quality.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\test\test_brisque.cpp.obj
[854/3598] Building CXX object modules\world\CMakeFiles\opencv_test_quality.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\test\test_gmsd.cpp.obj
[855/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ml.dir\__\ml\test\test_mltests.cpp.obj
[856/3598] Building CXX object modules\world\CMakeFiles\example_quality_brisque_eval_tid2008.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\samples\brisque_eval_tid2008.cpp.obj
[857/3598] Building CXX object modules\world\CMakeFiles\opencv_test_quality.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\test\test_mse.cpp.obj
[858/3598] Building CXX object modules\world\CMakeFiles\example_quality_brisque_trainer_livedb.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\samples\brisque_trainer_livedb.cpp.obj
[859/3598] Building CXX object modules\world\CMakeFiles\opencv_test_quality.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\test\test_ssim.cpp.obj
[860/3598] Building CXX object modules\world\CMakeFiles\opencv_test_reg.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\test\test_main.cpp.obj
[861/3598] Building CXX object modules\world\CMakeFiles\example_surface_matching_ppf_load_match.dir\D_\opencv\opencv_contrib-4.6.0\modules\surface_matching\samples\ppf_load_match.cpp.obj
[862/3598] Building CXX object modules\world\CMakeFiles\opencv_test_quality.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\test\test_psnr.cpp.obj
[863/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_reg.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\perf\perf_main.cpp.obj
[864/3598] Building CXX object modules\world\CMakeFiles\example_surface_matching_ppf_normal_computation.dir\D_\opencv\opencv_contrib-4.6.0\modules\surface_matching\samples\ppf_normal_computation.cpp.obj
[865/3598] Building CXX object modules\world\CMakeFiles\example_reg_map_test.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\samples\map_test.cpp.obj
[866/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_sepfilters.cpp.obj
[867/3598] Building CXX object modules\world\CMakeFiles\opencv_test_reg.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\test\test_reg.cpp.obj
[868/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgproc.dir\__\imgproc\perf\perf_resize.cpp.obj
[869/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudafilters.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafilters\test\test_main.cpp.obj
[870/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudafilters.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafilters\perf\perf_main.cpp.obj
[871/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_reg.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\perf\perf_reg.cpp.obj
[872/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_blend.cpp.obj
[873/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_canny.cpp.obj
[874/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_bilateral_filter.cpp.obj
[875/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_main.cpp.obj
[876/3598] Building CXX object modules\world\CMakeFiles\example_cudaimgproc_connected_components.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\samples\connected_components.cpp.obj
[877/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudawarping.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\test\test_main.cpp.obj
[878/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\perf\perf_bilateral_filter.cpp.obj
[879/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\perf\perf_blend.cpp.obj
[880/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\perf\perf_main.cpp.obj
[881/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\perf\perf_canny.cpp.obj
[882/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_mean_shift.cpp.obj
[883/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_gftt.cpp.obj
[884/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudafilters.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafilters\perf\perf_filters.cpp.obj
[885/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_color.cpp.obj
[886/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_corners.cpp.obj
[887/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\perf\perf_match_template.cpp.obj
[888/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_connectedcomponents.cpp.obj
[889/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_hough.cpp.obj
[890/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\perf\perf_gftt.cpp.obj
[891/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\perf\perf_color.cpp.obj
[892/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_histogram.cpp.obj
[893/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\perf\perf_mean_shift.cpp.obj
[894/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\test\test_match_template.cpp.obj
[895/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\perf\perf_histogram.cpp.obj
[896/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaimgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\perf\perf_hough.cpp.obj
[897/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudawarping.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\perf\perf_main.cpp.obj
[898/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\npy_blob.cpp.obj
[899/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_backends.cpp.obj
[900/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudawarping.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\test\test_remap.cpp.obj
[901/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_common.cpp.obj
[902/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudawarping.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\test\test_pyramids.cpp.obj
[903/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_ie_models.cpp.obj
[904/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudawarping.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\test\test_resize.cpp.obj
[905/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_main.cpp.obj
[906/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_dnn.dir\__\dnn\perf\perf_caffe.cpp.obj
[907/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_googlenet.cpp.obj
[908/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_caffe_importer.cpp.obj
[909/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudawarping.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\perf\perf_warping.cpp.obj
[910/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudawarping.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\test\test_warp_perspective.cpp.obj
[911/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudafilters.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafilters\test\test_filters.cpp.obj
[912/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudawarping.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\test\test_warp_affine.cpp.obj
[913/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_nms.cpp.obj
[914/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_torch_importer.cpp.obj
[915/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_onnx_conformance.cpp.obj
[916/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_dnn.dir\__\dnn\perf\perf_common.cpp.obj
[917/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_model.cpp.obj
[918/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_dnn.dir\__\dnn\perf\perf_main.cpp.obj
[919/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_darknet_importer.cpp.obj
[920/3598] Building CXX object modules\world\CMakeFiles\example_dnn_superres_dnn_superres.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_superres\samples\dnn_superres.cpp.obj
[921/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_onnx_importer.cpp.obj
[922/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn_superres.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_superres\test\test_main.cpp.obj
[923/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_dnn.dir\__\dnn\perf\perf_layer.cpp.obj
[924/3598] Building CXX object modules\world\CMakeFiles\example_dnn_superres_dnn_superres_multioutput.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_superres\samples\dnn_superres_multioutput.cpp.obj
[925/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_dnn.dir\__\dnn\perf\perf_convolution3d.cpp.obj
[926/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_dnn_superres.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_superres\perf\perf_main.cpp.obj
[927/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_dnn.dir\__\dnn\perf\perf_convolution1d.cpp.obj
[928/3598] Building CXX object modules\world\CMakeFiles\example_dnn_superres_dnn_superres_video.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_superres\samples\dnn_superres_video.cpp.obj
[929/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_misc.cpp.obj
[930/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_dnn.dir\__\dnn\perf\perf_convolution.cpp.obj
[931/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_dnn.dir\__\dnn\perf\perf_recurrent.cpp.obj
[932/3598] Building CXX object modules\world\CMakeFiles\example_dnn_superres_dnn_superres_benchmark_time.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_superres\samples\dnn_superres_benchmark_time.cpp.obj
[933/3598] Building CXX object modules\world\CMakeFiles\example_dnn_superres_dnn_superres_benchmark_quality.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_superres\samples\dnn_superres_benchmark_quality.cpp.obj
[934/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn_superres.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_superres\test\test_dnn_superres.cpp.obj
[935/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_agast.cpp.obj
[936/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_dnn_superres.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_superres\perf\perf_dnn_superres.cpp.obj
[937/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_dnn.dir\__\dnn\perf\perf_net.cpp.obj
[938/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_affine_feature.cpp.obj
[939/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_akaze.cpp.obj
[940/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_blobdetector.cpp.obj
[941/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_int8_layers.cpp.obj
[942/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_brisk.cpp.obj
[943/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\ocl\test_feature2d.cpp.obj
[944/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\ocl\test_brute_force_matcher.cpp.obj
[945/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_main.cpp.obj
[946/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_fast.cpp.obj
[947/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_keypoints.cpp.obj
[948/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_detectors_regression.cpp.obj
[949/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_mser.cpp.obj
[950/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_sift.cpp.obj
[951/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_orb.cpp.obj
[952/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_tf_importer.cpp.obj
[953/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_descriptors_regression.cpp.obj
[954/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_matchers_algorithmic.cpp.obj
[955/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_nearestneighbors.cpp.obj
[956/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_utils.cpp.obj
[957/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_descriptors_invariance.cpp.obj
[958/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_features2d.dir\__\features2d\perf\perf_main.cpp.obj
[959/3598] Building CXX object modules\world\CMakeFiles\opencv_test_fuzzy.dir\D_\opencv\opencv_contrib-4.6.0\modules\fuzzy\test\test_f0.cpp.obj
[960/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_features2d.dir\__\features2d\perf\opencl\perf_feature2d.cpp.obj
[961/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_detectors_invariance.cpp.obj
[962/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_halide_layers.cpp.obj
[963/3598] Building CXX object modules\world\CMakeFiles\opencv_test_fuzzy.dir\D_\opencv\opencv_contrib-4.6.0\modules\fuzzy\test\test_main.cpp.obj
[964/3598] Building CXX object modules\world\CMakeFiles\opencv_test_fuzzy.dir\D_\opencv\opencv_contrib-4.6.0\modules\fuzzy\test\test_image.cpp.obj
[965/3598] Building CXX object modules\world\CMakeFiles\example_fuzzy_fuzzy_filtering.dir\D_\opencv\opencv_contrib-4.6.0\modules\fuzzy\samples\fuzzy_filtering.cpp.obj
[966/3598] Building CXX object modules\world\CMakeFiles\opencv_test_features2d.dir\__\features2d\test\test_drawing.cpp.obj
[967/3598] Building CXX object modules\world\CMakeFiles\example_hfs_example.dir\D_\opencv\opencv_contrib-4.6.0\modules\hfs\samples\example.cpp.obj
[968/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videoio.dir\__\videoio\test\test_plugins.cpp.obj
[969/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_features2d.dir\__\features2d\perf\opencl\perf_brute_force_matcher.cpp.obj
[970/3598] Building CXX object modules\world\CMakeFiles\example_fuzzy_fuzzy_inpainting.dir\D_\opencv\opencv_contrib-4.6.0\modules\fuzzy\samples\fuzzy_inpainting.cpp.obj
[971/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videoio.dir\__\videoio\test\test_main.cpp.obj
[972/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_features2d.dir\__\features2d\perf\perf_batchDistance.cpp.obj
[973/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_features2d.dir\__\features2d\perf\perf_feature2d.cpp.obj
[974/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videoio.dir\__\videoio\test\test_microphone.cpp.obj
[975/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgcodecs.dir\__\imgcodecs\test\test_main.cpp.obj
[976/3598] Building CXX object modules\world\CMakeFiles\opencv_test_dnn.dir\__\dnn\test\test_layers.cpp.obj
[977/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videoio.dir\__\videoio\test\test_gstreamer.cpp.obj
[978/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgcodecs.dir\__\imgcodecs\test\test_common.cpp.obj
[979/3598] Building CXX object modules\world\CMakeFiles\opencv_test_line_descriptor.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\test\test_main.cpp.obj
[980/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_imgcodecs.dir\__\imgcodecs\perf\perf_main.cpp.obj
[981/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgcodecs.dir\__\imgcodecs\test\test_jpeg.cpp.obj
[982/3598] Building CXX object modules\world\CMakeFiles\example_line_descriptor_compute_descriptors.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\samples\compute_descriptors.cpp.obj
[983/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videoio.dir\__\videoio\test\test_mfx.cpp.obj
[984/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_line_descriptor.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\perf\perf_matching.cpp.obj
[985/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_line_descriptor.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\perf\perf_main.cpp.obj
[986/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgcodecs.dir\__\imgcodecs\test\test_webp.cpp.obj
[987/3598] Building CXX object modules\world\CMakeFiles\example_line_descriptor_lsd_lines_extraction.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\samples\lsd_lines_extraction.cpp.obj
[988/3598] Building CXX object modules\world\CMakeFiles\example_line_descriptor_lines_extraction.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\samples\lines_extraction.cpp.obj
[989/3598] Building CXX object modules\world\CMakeFiles\opencv_test_line_descriptor.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\test\test_matcher_regression.cpp.obj
[990/3598] Building CXX object modules\world\CMakeFiles\example_line_descriptor_knn_matching.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\samples\knn_matching.cpp.obj
[991/3598] Building CXX object modules\world\CMakeFiles\opencv_test_line_descriptor.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\test\test_descriptors_regression.cpp.obj
[992/3598] Building CXX object modules\world\CMakeFiles\opencv_test_line_descriptor.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\test\test_detector_regression.cpp.obj
[993/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgcodecs.dir\__\imgcodecs\test\test_grfmt.cpp.obj
[994/3598] Building CXX object modules\world\CMakeFiles\opencv_test_fuzzy.dir\D_\opencv\opencv_contrib-4.6.0\modules\fuzzy\test\test_f1.cpp.obj
[995/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_line_descriptor.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\perf\perf_descriptors.cpp.obj
[996/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgcodecs.dir\__\imgcodecs\test\test_png.cpp.obj
[997/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_line_descriptor.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\perf\perf_detection.cpp.obj
[998/3598] Building CXX object modules\world\CMakeFiles\example_line_descriptor_matching.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\samples\matching.cpp.obj
[999/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgcodecs.dir\__\imgcodecs\test\test_read_write.cpp.obj
[1000/3598] Building CXX object modules\world\CMakeFiles\opencv_test_photo.dir\__\photo\test\test_cloning.cpp.obj
[1001/3598] Building CXX object modules\world\CMakeFiles\example_line_descriptor_radius_matching.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\samples\radius_matching.cpp.obj
[1002/3598] Building CXX object modules\world\CMakeFiles\opencv_test_photo.dir\__\photo\test\ocl\test_denoising.cpp.obj
[1003/3598] Building CXX object modules\world\CMakeFiles\opencv_test_photo.dir\__\photo\test\test_denoise_tvl1.cpp.obj
[1004/3598] Building CXX object modules\world\CMakeFiles\opencv_test_photo.dir\__\photo\test\test_denoising.cuda.cpp.obj
[1005/3598] Building CXX object modules\world\CMakeFiles\opencv_test_photo.dir\__\photo\test\test_denoising.cpp.obj
[1006/3598] Building CXX object modules\world\CMakeFiles\opencv_test_photo.dir\__\photo\test\test_decolor.cpp.obj
[1007/3598] Building CXX object modules\world\CMakeFiles\opencv_test_photo.dir\__\photo\test\test_main.cpp.obj
[1008/3598] Building CXX object modules\world\CMakeFiles\opencv_test_imgcodecs.dir\__\imgcodecs\test\test_tiff.cpp.obj
[1009/3598] Building CXX object modules\world\CMakeFiles\opencv_test_photo.dir\__\photo\test\test_hdr.cpp.obj
[1010/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_photo.dir\__\photo\perf\opencl\perf_denoising.cpp.obj
[1011/3598] Building CXX object modules\world\CMakeFiles\opencv_test_text.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\test\test_main.cpp.obj
[1012/3598] Building CXX object modules\world\CMakeFiles\example_text_character_recognition.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\samples\character_recognition.cpp.obj
[1013/3598] Building CXX object modules\world\CMakeFiles\example_text_dictnet_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\samples\dictnet_demo.cpp.obj
[1014/3598] Building CXX object modules\world\CMakeFiles\example_saliency_computeSaliency.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\samples\computeSaliency.cpp.obj
[1015/3598] Building CXX object modules\world\CMakeFiles\opencv_test_saliency.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\test\test_main.cpp.obj
[1016/3598] Building CXX object modules\world\CMakeFiles\opencv_test_saliency.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\test\test_static_saliency_spectral_residual.cpp.obj
[1017/3598] Building CXX object modules\world\CMakeFiles\opencv_test_photo.dir\__\photo\test\test_npr.cpp.obj
[1018/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_photo.dir\__\photo\perf\perf_main.cpp.obj
[1019/3598] Building CXX object modules\world\CMakeFiles\opencv_test_text.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\test\test_detection_swt.cpp.obj
[1020/3598] Building CXX object modules\world\CMakeFiles\opencv_test_photo.dir\__\photo\test\test_inpaint.cpp.obj
[1021/3598] Building CXX object modules\world\CMakeFiles\example_text_cropped_word_recognition.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\samples\cropped_word_recognition.cpp.obj
[1022/3598] Building CXX object modules\world\CMakeFiles\opencv_test_text.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\test\test_detection.cpp.obj
[1023/3598] Building CXX object modules\world\CMakeFiles\example_text_segmented_word_recognition.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\samples\segmented_word_recognition.cpp.obj
[1024/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_photo.dir\__\photo\perf\perf_inpaint.cpp.obj
[1025/3598] Building CXX object modules\world\CMakeFiles\example_text_textbox_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\samples\textbox_demo.cpp.obj
[1026/3598] Building CXX object modules\world\CMakeFiles\example_text_textdetection.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\samples\textdetection.cpp.obj
[1027/3598] Building CXX object modules\world\CMakeFiles\example_text_text_recognition_cnn.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\samples\text_recognition_cnn.cpp.obj
[1028/3598] Building CXX object modules\world\CMakeFiles\example_text_textdetection_swt.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\samples\textdetection_swt.cpp.obj
[1029/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_photo.dir\__\photo\perf\perf_cuda.cpp.obj
[1030/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_videoio.dir\__\videoio\perf\perf_main.cpp.obj
[1031/3598] Building CXX object modules\world\CMakeFiles\example_text_end_to_end_recognition.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\samples\end_to_end_recognition.cpp.obj
[1032/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videoio.dir\__\videoio\test\test_container_avi.cpp.obj
[1033/3598] Building CXX object modules\world\CMakeFiles\opencv_test_wechat_qrcode.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\test\test_main.cpp.obj
[1034/3598] Building CXX object modules\world\CMakeFiles\example_wechat_qrcode_qrcode_example.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\samples\qrcode_example.cpp.obj
[1035/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videoio.dir\__\videoio\test\test_dynamic.cpp.obj
[1036/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videoio.dir\__\videoio\test\test_camera.cpp.obj
[1037/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_videoio.dir\__\videoio\perf\perf_input.cpp.obj
[1038/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_videoio.dir\__\videoio\perf\perf_output.cpp.obj
[1039/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\test\test_denoise_bm3d.cpp.obj
[1040/3598] Building CXX object modules\world\CMakeFiles\example_text_webcam_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\samples\webcam_demo.cpp.obj
[1041/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\test\test_grayworld.cpp.obj
[1042/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\test\simple_color_balance.cpp.obj
[1043/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\test\test_main.cpp.obj
[1044/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\test\test_hdr.cpp.obj
[1045/3598] Building CXX object modules\world\CMakeFiles\opencv_test_wechat_qrcode.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\test\test_qrcode.cpp.obj
[1046/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\test\test_inpainting.cpp.obj
[1047/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videoio.dir\__\videoio\test\test_audio.cpp.obj
[1048/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\test\dct_image_denoising.cpp.obj
[1049/3598] Building CXX object modules\world\CMakeFiles\example_xphoto_bm3d_image_denoising.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\samples\bm3d_image_denoising.cpp.obj
[1050/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\test\test_oil_painting.cpp.obj
[1051/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\test\test_learning_based_color_balance.cpp.obj
[1052/3598] Building CXX object modules\world\CMakeFiles\example_xphoto_inpainting.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\samples\inpainting.cpp.obj
[1053/3598] Building CXX object modules\world\CMakeFiles\example_xphoto_oil.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\samples\oil.cpp.obj
[1054/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\perf\perf_main.cpp.obj
[1055/3598] Building CXX object modules\world\CMakeFiles\example_xphoto_color_balance.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\samples\color_balance.cpp.obj
[1056/3598] Building CXX object modules\world\CMakeFiles\example_xphoto_dct_image_denoising.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\samples\dct_image_denoising.cpp.obj
[1057/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videoio.dir\__\videoio\test\test_ffmpeg.cpp.obj
[1058/3598] Building CXX object modules\world\CMakeFiles\opencv_test_barcode.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\test\test_main.cpp.obj
[1059/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\perf\perf_learning_based_color_balance.cpp.obj
[1060/3598] Building CXX object modules\world\CMakeFiles\example_barcode_barcode.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\samples\barcode.cpp.obj
[1061/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xphoto.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\perf\perf_grayworld.cpp.obj
[1062/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videoio.dir\__\videoio\test\test_video_io.cpp.obj
[1063/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_affine3.cpp.obj
[1064/3598] Building CXX object modules\world\CMakeFiles\opencv_test_barcode.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\test\test_barcode.cpp.obj
[1065/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_affine3d_estimator.cpp.obj
[1066/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_affine_partial2d_estimator.cpp.obj
[1067/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_cameracalibration_badarg.cpp.obj
[1068/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_affine2d_estimator.cpp.obj
[1069/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_chesscorners_timing.cpp.obj
[1070/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_chessboardgenerator.cpp.obj
[1071/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_decompose_projection.cpp.obj
[1072/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_cameracalibration_artificial.cpp.obj
[1073/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_chesscorners_badarg.cpp.obj
[1074/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_calibration_hand_eye.cpp.obj
[1075/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_compose_rt.cpp.obj
[1076/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\opencl\test_stereobm.cpp.obj
[1077/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_filter_homography_decomp.cpp.obj
[1078/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_cameracalibration_tilt.cpp.obj
[1079/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_cornerssubpix.cpp.obj
[1080/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_chesscorners.cpp.obj
[1081/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_homography_decomp.cpp.obj
[1082/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_fundam.cpp.obj
[1083/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_posit.cpp.obj
[1084/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_cameracalibration.cpp.obj
[1085/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_reproject_image_to_3d.cpp.obj
[1086/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_modelest.cpp.obj
[1087/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_homography.cpp.obj
[1088/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_main.cpp.obj
[1089/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_translation3d_estimator.cpp.obj
[1090/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_undistort_badarg.cpp.obj
[1091/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_stereomatching.cpp.obj
[1092/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_fisheye.cpp.obj
[1093/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_undistort_points.cpp.obj
[1094/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_usac.cpp.obj
[1095/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_calib3d.dir\__\calib3d\perf\perf_main.cpp.obj
[1096/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_calib3d.dir\__\calib3d\perf\opencl\perf_stereobm.cpp.obj
[1097/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_calib3d.dir\__\calib3d\perf\perf_cicrlesGrid.cpp.obj
[1098/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_undistort.cpp.obj
[1099/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_calib3d.dir\__\calib3d\perf\perf_affine2d.cpp.obj
[1100/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_calib3d.dir\__\calib3d\perf\perf_undistort.cpp.obj
[1101/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_calib3d.dir\__\calib3d\perf\perf_stereosgbm.cpp.obj
[1102/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudacodec.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\perf\perf_main.cpp.obj
[1103/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudacodec.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\test\test_main.cpp.obj
[1104/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_calib3d.dir\__\calib3d\perf\perf_pnp.cpp.obj
[1105/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudafeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafeatures2d\test\test_main.cpp.obj
[1106/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudastereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudastereo\test\test_main.cpp.obj
[1107/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudacodec.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\perf\perf_video.cpp.obj
[1108/3598] Building CXX object modules\world\CMakeFiles\example_datasets_fr_adience.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\fr_adience.cpp.obj
[1109/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudafeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafeatures2d\perf\perf_main.cpp.obj
[1110/3598] Building CXX object modules\world\CMakeFiles\example_datasets_ar_sports.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\ar_sports.cpp.obj
[1111/3598] Building CXX object modules\world\CMakeFiles\example_datasets_ar_hmdb.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\ar_hmdb.cpp.obj
[1112/3598] Building CXX object modules\world\CMakeFiles\example_datasets_fr_lfw.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\fr_lfw.cpp.obj
[1113/3598] Building CXX object modules\world\CMakeFiles\example_datasets_hpe_parse.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\hpe_parse.cpp.obj
[1114/3598] Building CXX object modules\world\CMakeFiles\example_datasets_gr_chalearn.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\gr_chalearn.cpp.obj
[1115/3598] Building CXX object modules\world\CMakeFiles\example_datasets_hpe_humaneva.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\hpe_humaneva.cpp.obj
[1116/3598] Building CXX object modules\world\CMakeFiles\example_datasets_gr_skig.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\gr_skig.cpp.obj
[1117/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudastereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudastereo\perf\perf_main.cpp.obj
[1118/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudacodec.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\test\test_video.cpp.obj
[1119/3598] Building CXX object modules\world\CMakeFiles\example_datasets_is_bsds.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\is_bsds.cpp.obj
[1120/3598] Building CXX object modules\world\CMakeFiles\example_datasets_ir_affine.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\ir_affine.cpp.obj
[1121/3598] Building CXX object modules\world\CMakeFiles\example_datasets_ir_robot.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\ir_robot.cpp.obj
[1122/3598] Building CXX object modules\world\CMakeFiles\example_datasets_fr_lfw_benchmark.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\fr_lfw_benchmark.cpp.obj
[1123/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudastereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudastereo\test\test_stereo.cpp.obj
[1124/3598] Building CXX object modules\world\CMakeFiles\example_datasets_msm_epfl.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\msm_epfl.cpp.obj
[1125/3598] Building CXX object modules\world\CMakeFiles\example_datasets_msm_middlebury.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\msm_middlebury.cpp.obj
[1126/3598] Building CXX object modules\world\CMakeFiles\example_datasets_is_weizmann.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\is_weizmann.cpp.obj
[1127/3598] Building CXX object modules\world\CMakeFiles\example_datasets_or_imagenet.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\or_imagenet.cpp.obj
[1128/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudafeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafeatures2d\perf\perf_features2d.cpp.obj
[1129/3598] Building CXX object modules\world\CMakeFiles\example_datasets_pd_caltech.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\pd_caltech.cpp.obj
[1130/3598] Building CXX object modules\world\CMakeFiles\example_datasets_or_mnist.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\or_mnist.cpp.obj
[1131/3598] Building CXX object modules\world\CMakeFiles\example_datasets_or_pascal.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\or_pascal.cpp.obj
[1132/3598] Building CXX object modules\world\CMakeFiles\example_datasets_or_sun.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\or_sun.cpp.obj
[1133/3598] Building CXX object modules\world\CMakeFiles\example_datasets_ar_hmdb_benchmark.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\ar_hmdb_benchmark.cpp.obj
[1134/3598] Building CXX object modules\world\CMakeFiles\example_datasets_slam_tumindoor.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\slam_tumindoor.cpp.obj
[1135/3598] Building CXX object modules\world\CMakeFiles\example_datasets_pd_inria.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\pd_inria.cpp.obj
[1136/3598] Building CXX object modules\world\CMakeFiles\example_datasets_slam_kitti.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\slam_kitti.cpp.obj
[1137/3598] Building CXX object modules\world\CMakeFiles\example_datasets_sr_div2k.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\sr_div2k.cpp.obj
[1138/3598] Building CXX object modules\world\CMakeFiles\example_datasets_sr_general100.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\sr_general100.cpp.obj
[1139/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudastereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudastereo\test\test_sgm_funcs.cpp.obj
[1140/3598] Building CXX object modules\world\CMakeFiles\example_datasets_sr_bsds.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\sr_bsds.cpp.obj
[1141/3598] Building CXX object modules\world\CMakeFiles\example_datasets_tr_chars.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\tr_chars.cpp.obj
[1142/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudastereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudastereo\perf\perf_stereo.cpp.obj
[1143/3598] Building CXX object modules\world\CMakeFiles\example_datasets_tr_svt.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\tr_svt.cpp.obj
[1144/3598] Building CXX object modules\world\CMakeFiles\example_datasets_tr_chars_benchmark.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\tr_chars_benchmark.cpp.obj
[1145/3598] Building CXX object modules\world\CMakeFiles\example_datasets_tr_icdar.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\tr_icdar.cpp.obj
[1146/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudafeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafeatures2d\test\test_features2d.cpp.obj
[1147/3598] Building CXX object modules\world\CMakeFiles\example_datasets_track_vot.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\track_vot.cpp.obj
[1148/3598] Building CXX object modules\world\CMakeFiles\opencv_test_calib3d.dir\__\calib3d\test\test_solvepnp_ransac.cpp.obj
[1149/3598] Building CXX object modules\world\CMakeFiles\example_datasets_tr_svt_benchmark.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\tr_svt_benchmark.cpp.obj
[1150/3598] Building CXX object modules\world\CMakeFiles\opencv_test_highgui.dir\__\highgui\test\test_main.cpp.obj
[1151/3598] Building CXX object modules\world\CMakeFiles\opencv_test_highgui.dir\__\highgui\test\test_gui.cpp.obj
[1152/3598] Building CXX object modules\world\CMakeFiles\example_mcc_chart_detection.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\samples\chart_detection.cpp.obj
[1153/3598] Building CXX object modules\world\CMakeFiles\opencv_test_mcc.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\test\test_ccm.cpp.obj
[1154/3598] Building CXX object modules\world\CMakeFiles\example_mcc_color_correction_model.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\samples\color_correction_model.cpp.obj
[1155/3598] Building CXX object modules\world\CMakeFiles\opencv_test_mcc.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\test\test_main.cpp.obj
[1156/3598] Building CXX object modules\world\CMakeFiles\opencv_test_mcc.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\test\test_mcc.cpp.obj
[1157/3598] Building CXX object modules\world\CMakeFiles\example_mcc_chart_detection_with_network.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\samples\chart_detection_with_network.cpp.obj
[1158/3598] Building CXX object modules\world\CMakeFiles\opencv_test_objdetect.dir\__\objdetect\test\test_main.cpp.obj
[1159/3598] Building CXX object modules\world\CMakeFiles\example_datasets_tr_icdar_benchmark.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\samples\tr_icdar_benchmark.cpp.obj
[1160/3598] Building CXX object modules\world\CMakeFiles\opencv_test_objdetect.dir\__\objdetect\test\test_face.cpp.obj
[1161/3598] Building CXX object modules\world\CMakeFiles\opencv_test_objdetect.dir\__\objdetect\test\opencl\test_hogdetector.cpp.obj
[1162/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_objdetect.dir\__\objdetect\perf\perf_main.cpp.obj
[1163/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_objdetect.dir\__\objdetect\perf\opencl\perf_hogdetect.cpp.obj
[1164/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_objdetect.dir\__\objdetect\perf\opencl\perf_cascades.cpp.obj
[1165/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rapid.dir\D_\opencv\opencv_contrib-4.6.0\modules\rapid\test\test_main.cpp.obj
[1166/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_main.cpp.obj
[1167/3598] Building CXX object modules\world\CMakeFiles\opencv_test_objdetect.dir\__\objdetect\test\test_qrcode.cpp.obj
[1168/3598] Building CXX object modules\world\CMakeFiles\opencv_test_objdetect.dir\__\objdetect\test\test_cascadeandhog.cpp.obj
[1169/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\test\ocl\test_tsdf.cpp.obj
[1170/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_colored_kinfu.cpp.obj
[1171/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_normal.cpp.obj
[1172/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_dynafu.cpp.obj
D:\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_dynafu.cpp(124): warning C4551: function call missing argument list
[1173/3598] Building CXX object modules\world\CMakeFiles\opencv_test_objdetect.dir\__\objdetect\test\test_qrcode_encode.cpp.obj
[1174/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_utils.cpp.obj
[1175/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_pose_graph.cpp.obj
[1176/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_odometry.cpp.obj
[1177/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_objdetect.dir\__\objdetect\perf\perf_qrcode_pipeline.cpp.obj
[1178/3598] Building CXX object modules\world\CMakeFiles\example_rgbd_colored_kinfu_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\samples\colored_kinfu_demo.cpp.obj
[1179/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_registration.cpp.obj
[1180/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_kinfu.cpp.obj
[1181/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\perf\perf_main.cpp.obj
[1182/3598] Building CXX object modules\world\CMakeFiles\example_rgbd_kinfu_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\samples\kinfu_demo.cpp.obj
[1183/3598] Building CXX object modules\world\CMakeFiles\opencv_test_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\test\test_tsdf.cpp.obj
[1184/3598] Building CXX object modules\world\CMakeFiles\example_rgbd_dynafu_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\samples\dynafu_demo.cpp.obj
[1185/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_rgbd.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\perf\perf_tsdf.cpp.obj
[1186/3598] Building CXX object modules\world\CMakeFiles\opencv_test_structured_light.dir\D_\opencv\opencv_contrib-4.6.0\modules\structured_light\test\test_main.cpp.obj
[1187/3598] Building CXX object modules\world\CMakeFiles\example_rgbd_odometry_evaluation.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\samples\odometry_evaluation.cpp.obj
[1188/3598] Building CXX object modules\world\CMakeFiles\opencv_test_shape.dir\D_\opencv\opencv_contrib-4.6.0\modules\shape\test\test_main.cpp.obj
[1189/3598] Building CXX object modules\world\CMakeFiles\example_shape_shape_example.dir\D_\opencv\opencv_contrib-4.6.0\modules\shape\samples\shape_example.cpp.obj
[1190/3598] Building CXX object modules\world\CMakeFiles\opencv_test_structured_light.dir\D_\opencv\opencv_contrib-4.6.0\modules\structured_light\test\test_getProjPixel.cpp.obj
[1191/3598] Building CXX object modules\world\CMakeFiles\example_rgbd_large_kinfu_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\samples\large_kinfu_demo.cpp.obj
[1192/3598] Building CXX object modules\world\CMakeFiles\opencv_test_shape.dir\D_\opencv\opencv_contrib-4.6.0\modules\shape\test\test_shape.cpp.obj
[1193/3598] Building CXX object modules\world\CMakeFiles\example_rgbd_linemod.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\samples\linemod.cpp.obj
[1194/3598] Building CXX object modules\world\CMakeFiles\opencv_test_structured_light.dir\D_\opencv\opencv_contrib-4.6.0\modules\structured_light\test\test_faps.cpp.obj
[1195/3598] Building CXX object modules\world\CMakeFiles\example_structured_light_cap_pattern.dir\D_\opencv\opencv_contrib-4.6.0\modules\structured_light\samples\cap_pattern.cpp.obj
[1196/3598] Building CXX object modules\world\CMakeFiles\example_structured_light_pointcloud.dir\D_\opencv\opencv_contrib-4.6.0\modules\structured_light\samples\pointcloud.cpp.obj
[1197/3598] Building CXX object modules\world\CMakeFiles\opencv_test_structured_light.dir\D_\opencv\opencv_contrib-4.6.0\modules\structured_light\test\test_plane.cpp.obj
[1198/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\test_OF_accuracy.cpp.obj
[1199/3598] Building CXX object modules\world\CMakeFiles\example_structured_light_capsinpattern.dir\D_\opencv\opencv_contrib-4.6.0\modules\structured_light\samples\capsinpattern.cpp.obj
[1200/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\test_OF_reproducibility.cpp.obj
[1201/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\test_kalman.cpp.obj
[1202/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\ocl\test_dis.cpp.obj
[1203/3598] Building CXX object modules\world\CMakeFiles\example_structured_light_projectorcalibration.dir\D_\opencv\opencv_contrib-4.6.0\modules\structured_light\samples\projectorcalibration.cpp.obj
[1204/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\test_main.cpp.obj
[1205/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\test_camshift.cpp.obj
[1206/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\test_estimaterigid.cpp.obj
[1207/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\ocl\test_optflowpyrlk.cpp.obj
[1208/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\ocl\test_optflow_farneback.cpp.obj
[1209/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\test_accum.cpp.obj
[1210/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\test_optflowpyrlk.cpp.obj
[1211/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\ocl\test_bgfg_mog2.cpp.obj
[1212/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\opencl\perf_motempl.cpp.obj
[1213/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\test_ecc.cpp.obj
[1214/3598] Building CXX object modules\world\CMakeFiles\opencv_test_video.dir\__\video\test\test_trackers.cpp.obj
[1215/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\opencl\perf_bgfg_knn.cpp.obj
[1216/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\perf_main.cpp.obj
[1217/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\opencl\perf_dis_optflow.cpp.obj
[1218/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\opencl\perf_optflow_farneback.cpp.obj
[1219/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\opencl\perf_bgfg_mog2.cpp.obj
[1220/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\opencl\perf_optflow_pyrlk.cpp.obj
[1221/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\perf_bgfg_knn.cpp.obj
[1222/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\test\test_main.cpp.obj
[1223/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\perf_ecc.cpp.obj
[1224/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\perf_disflow.cpp.obj
[1225/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\test\test_surf.cuda.cpp.obj
[1226/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\test\test_detectors.cpp.obj
[1227/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\test\test_gms_matcher.cpp.obj
[1228/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\test\test_surf.ocl.cpp.obj
[1229/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\test\test_keypoints.cpp.obj
[1230/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\perf\perf_latch.cpp.obj
[1231/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\test\test_logos_matcher.cpp.obj
[1232/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\perf_variational_refinement.cpp.obj
[1233/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\perf\perf_beblid.cpp.obj
[1234/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\perf\perf_main.cpp.obj
[1235/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\perf_bgfg_mog2.cpp.obj
[1236/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\perf_trackers.cpp.obj
[1237/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\perf\perf_vgg.cpp.obj
[1238/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\test\test_features2d.cpp.obj
[1239/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\perf\perf_surf.ocl.cpp.obj
[1240/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\perf\perf_daisy.cpp.obj
[1241/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\perf\perf_surf.cpp.obj
[1242/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_video.dir\__\video\perf\perf_optflowpyrlk.cpp.obj
[1243/3598] Building CXX object modules\world\CMakeFiles\opencv_test_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\test\test_rotation_and_scale_invariance.cpp.obj
[1244/3598] Building CXX object modules\world\CMakeFiles\example_xfeatures2d_pct_signatures.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\samples\pct_signatures.cpp.obj
[1245/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\perf\perf_surf.cuda.cpp.obj
[1246/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_xfeatures2d.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\perf\perf_msd.cpp.obj
[1247/3598] Building CXX object modules\world\CMakeFiles\example_xfeatures2d_shape_transformation.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\samples\shape_transformation.cpp.obj
[1248/3598] Building CXX object modules\world\CMakeFiles\example_xfeatures2d_pct_webcam.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\samples\pct_webcam.cpp.obj
[1249/3598] Building CXX object modules\world\CMakeFiles\example_xfeatures2d_video_homography.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\samples\video_homography.cpp.obj
[1250/3598] Building CXX object modules\world\CMakeFiles\example_xfeatures2d_surf_matcher.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\samples\surf_matcher.cpp.obj
[1251/3598] Building CXX object modules\world\CMakeFiles\example_xfeatures2d_gms_matcher.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\samples\gms_matcher.cpp.obj
[1252/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_anisodiff.cpp.obj
[1253/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_deriche_filter.cpp.obj
[1254/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_edgeboxes.cpp.obj
[1255/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_edgepreserving_filter.cpp.obj
[1256/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_adaptive_manifold.cpp.obj
[1257/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_adaptive_manifold_ref_impl.cpp.obj
[1258/3598] Building CXX object modules\world\CMakeFiles\example_xfeatures2d_bagofwords_classification.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\samples\bagofwords_classification.cpp.obj
[1259/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_bilateral_texture_filter.cpp.obj
[1260/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_fourier_descriptors.cpp.obj
[1261/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_fbs_filter.cpp.obj
[1262/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_fld.cpp.obj
[1263/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_domain_transform.cpp.obj
[1264/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_radon_transform.cpp.obj
[1265/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_niblack_threshold.cpp.obj
[1266/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_main.cpp.obj
[1267/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_matchcolortemplate.cpp.obj
[1268/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_fast_hough_transform.cpp.obj
[1269/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_guided_filter.cpp.obj
[1270/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_disparity_wls_filter.cpp.obj
[1271/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_fgs_filter.cpp.obj
[1272/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_joint_bilateral_filter.cpp.obj
[1273/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_l0_smooth.cpp.obj
[1274/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_ridge_detection_filter.cpp.obj
[1275/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_scansegment.cpp.obj
[1276/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_slic.cpp.obj
[1277/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_thinning.cpp.obj
[1278/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_structured_edge_detection.cpp.obj
[1279/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_run_length_morphology.cpp.obj
[1280/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_rolling_guidance_filter.cpp.obj
[1281/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_adaptive_manifold.cpp.obj
[1282/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_sparse_match_interpolator.cpp.obj
[1283/3598] Building CXX object modules\world\CMakeFiles\opencv_test_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\test\test_weighted_median_filter.cpp.obj
[1284/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_disparity_wls_filter.cpp.obj
[1285/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_fast_hough_transform.cpp.obj
[1286/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_brightedgesexample.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\brightedgesexample.cpp.obj
[1287/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_color_match_template.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\color_match_template.cpp.obj
[1288/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_edgepreserving_filter.cpp.obj
[1289/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_guided_filter.cpp.obj
[1290/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_main.cpp.obj
[1291/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_weighted_median_filter.cpp.obj
[1292/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_colorize.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\colorize.cpp.obj
[1293/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_fgs_filter.cpp.obj
[1294/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_bilateral_texture_filter.cpp.obj
[1295/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_edgepreserving_filter_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\edgepreserving_filter_demo.cpp.obj
[1296/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_domain_transform.cpp.obj
[1297/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_deriche_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\deriche_demo.cpp.obj
[1298/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_filterdemo.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\filterdemo.cpp.obj
[1299/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_radon_transform.cpp.obj
[1300/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_l0_smooth.cpp.obj
[1301/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_ridge_detection_filter.cpp.obj
[1302/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_rolling_guidance_filter.cpp.obj
[1303/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_edgeboxes_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\edgeboxes_demo.cpp.obj
[1304/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_run_length_morphology.cpp.obj
[1305/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_ximgproc.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\perf\perf_joint_bilateral_filter.cpp.obj
[1306/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_graphsegmentation_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\graphsegmentation_demo.cpp.obj
[1307/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_disparity_filtering.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\disparity_filtering.cpp.obj
[1308/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_fast_hough_transform.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\fast_hough_transform.cpp.obj
[1309/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_fourier_descriptors_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\fourier_descriptors_demo.cpp.obj
[1310/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_fld_lines.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\fld_lines.cpp.obj
[1311/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_live_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\live_demo.cpp.obj
[1312/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_radon_transform_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\radon_transform_demo.cpp.obj
[1313/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_paillou_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\paillou_demo.cpp.obj
[1314/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_selectivesearchsegmentation_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\selectivesearchsegmentation_demo.cpp.obj
[1315/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_niblack_thresholding.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\niblack_thresholding.cpp.obj
[1316/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_thinning.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\thinning.cpp.obj
[1317/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_peilin.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\peilin.cpp.obj
[1318/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_run_length_morphology_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\run_length_morphology_demo.cpp.obj
[1319/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_structured_edge_detection.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\structured_edge_detection.cpp.obj
[1320/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_seeds.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\seeds.cpp.obj
[1321/3598] Building CXX object modules\world\CMakeFiles\example_ximgproc_slic.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\samples\slic.cpp.obj
[1322/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\TestCompact.cpp.obj
[1323/3598] Building CXX object modules\world\CMakeFiles\opencv_test_aruco.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\test\test_misc.cpp.obj
[1324/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\TestHaarCascadeLoader.cpp.obj
[1325/3598] Building CXX object modules\world\CMakeFiles\opencv_test_aruco.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\test\test_main.cpp.obj
[1326/3598] Building CXX object modules\world\CMakeFiles\example_aruco_aruco_dict_utils.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\aruco_dict_utils.cpp.obj
[1327/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\TestDrawRects.cpp.obj
[1328/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_aruco.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\perf\perf_main.cpp.obj
[1329/3598] Building CXX object modules\world\CMakeFiles\example_aruco_create_marker.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\create_marker.cpp.obj
[1330/3598] Building CXX object modules\world\CMakeFiles\example_aruco_create_board_charuco.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\create_board_charuco.cpp.obj
[1331/3598] Building CXX object modules\world\CMakeFiles\example_aruco_create_diamond.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\create_diamond.cpp.obj
[1332/3598] Building CXX object modules\world\CMakeFiles\opencv_test_aruco.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\test\test_charucodetection.cpp.obj
[1333/3598] Building CXX object modules\world\CMakeFiles\example_aruco_create_board.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\create_board.cpp.obj
[1334/3598] Building CXX object modules\world\CMakeFiles\opencv_test_bgsegm.dir\D_\opencv\opencv_contrib-4.6.0\modules\bgsegm\test\test_backgroundsubtractor_gbh.cpp.obj
[1335/3598] Building CXX object modules\world\CMakeFiles\opencv_test_aruco.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\test\test_arucodetection.cpp.obj
[1336/3598] Building CXX object modules\world\CMakeFiles\opencv_test_aruco.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\test\test_boarddetection.cpp.obj
[1337/3598] Building CXX object modules\world\CMakeFiles\example_aruco_tutorial_charuco_create_detect.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\tutorial_charuco_create_detect.cpp.obj
[1338/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\TestHaarCascadeApplication.cpp.obj
[1339/3598] Building CXX object modules\world\CMakeFiles\example_aruco_calibrate_camera.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\calibrate_camera.cpp.obj
[1340/3598] Building CXX object modules\world\CMakeFiles\example_aruco_detect_board.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\detect_board.cpp.obj
[1341/3598] Building CXX object modules\world\CMakeFiles\example_aruco_detect_board_charuco.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\detect_board_charuco.cpp.obj
[1342/3598] Building CXX object modules\world\CMakeFiles\example_aruco_detect_markers.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\detect_markers.cpp.obj
[1343/3598] Building CXX object modules\world\CMakeFiles\example_bgsegm_bgfg.dir\D_\opencv\opencv_contrib-4.6.0\modules\bgsegm\samples\bgfg.cpp.obj
[1344/3598] Building CXX object modules\world\CMakeFiles\example_aruco_detect_diamonds.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\detect_diamonds.cpp.obj
[1345/3598] Building CXX object modules\world\CMakeFiles\opencv_test_bgsegm.dir\D_\opencv\opencv_contrib-4.6.0\modules\bgsegm\test\test_main.cpp.obj
[1346/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_aruco.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\perf\perf_aruco.cpp.obj
[1347/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_bioinspired.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\perf\perf_main.cpp.obj
[1348/3598] Building CXX object modules\world\CMakeFiles\example_aruco_calibrate_camera_charuco.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\samples\calibrate_camera_charuco.cpp.obj
[1349/3598] Building CXX object modules\world\CMakeFiles\opencv_test_bioinspired.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\test\test_main.cpp.obj
[1350/3598] Building CXX object modules\world\CMakeFiles\opencv_test_bgsegm.dir\D_\opencv\opencv_contrib-4.6.0\modules\bgsegm\test\test_backgroundsubtractor_lsbp.cpp.obj
[1351/3598] Building CXX object modules\world\CMakeFiles\example_bioinspired_retinaDemo.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\samples\retinaDemo.cpp.obj
[1352/3598] Building CXX object modules\world\CMakeFiles\example_ccalib_multi_cameras_calibration.dir\D_\opencv\opencv_contrib-4.6.0\modules\ccalib\samples\multi_cameras_calibration.cpp.obj
[1353/3598] Building CXX object modules\world\CMakeFiles\example_ccalib_random_pattern_calibration.dir\D_\opencv\opencv_contrib-4.6.0\modules\ccalib\samples\random_pattern_calibration.cpp.obj
[1354/3598] Building CXX object modules\world\CMakeFiles\example_ccalib_random_pattern_generator.dir\D_\opencv\opencv_contrib-4.6.0\modules\ccalib\samples\random_pattern_generator.cpp.obj
[1355/3598] Building CXX object modules\world\CMakeFiles\example_bioinspired_OpenEXRimages_HDR_Retina_toneMapping.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\samples\OpenEXRimages_HDR_Retina_toneMapping.cpp.obj
[1356/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_bioinspired.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\perf\opencl\perf_retina.ocl.cpp.obj
[1357/3598] Building CXX object modules\world\CMakeFiles\example_ccalib_omni_stereo_calibration.dir\D_\opencv\opencv_contrib-4.6.0\modules\ccalib\samples\omni_stereo_calibration.cpp.obj
[1358/3598] Building CXX object modules\world\CMakeFiles\example_ccalib_omni_calibration.dir\D_\opencv\opencv_contrib-4.6.0\modules\ccalib\samples\omni_calibration.cpp.obj
[1359/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudabgsegm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudabgsegm\test\test_main.cpp.obj
[1360/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudabgsegm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudabgsegm\test\test_bgsegm.cpp.obj
[1361/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudabgsegm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudabgsegm\perf\perf_bgsegm.cpp.obj
[1362/3598] Building CXX object modules\world\CMakeFiles\opencv_test_bioinspired.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\test\test_retina_ocl.cpp.obj
[1363/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudabgsegm.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudabgsegm\perf\perf_main.cpp.obj
[1364/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\TestResize.cpp.obj
[1365/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\TestHypothesesFilter.cpp.obj
[1366/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\TestHypothesesGrow.cpp.obj
[1367/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\perf\perf_main.cpp.obj
[1368/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\perf\perf_bgsegm.cpp.obj
[1369/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\TestIntegralImage.cpp.obj
[1370/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\TestIntegralImageSquared.cpp.obj
[1371/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_compile_args_tests.cpp.obj
[1372/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\perf\perf_labeling.cpp.obj
[1373/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaobjdetect.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\test\test_main.cpp.obj
[1374/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\test_main.cpp.obj
[1375/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\TestTranspose.cpp.obj
[1376/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\TestRectStdDev.cpp.obj
[1377/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\test_labeling.cpp.obj
[1378/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\test_calib3d.cpp.obj
[1379/3598] Building CXX object modules\world\CMakeFiles\example_dnn_objdetect_image_classification.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_objdetect\samples\image_classification.cpp.obj
[1380/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\test_nvidia.cpp.obj
[1381/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_async_test.cpp.obj
[1382/3598] Building CXX object modules\world\CMakeFiles\example_dpm_cascade_detect_camera.dir\D_\opencv\opencv_contrib-4.6.0\modules\dpm\samples\cascade_detect_camera.cpp.obj
[1383/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\test\main_nvidia.cpp.obj
[1384/3598] Building CXX object modules\world\CMakeFiles\example_dpm_cascade_detect_sequence.dir\D_\opencv\opencv_contrib-4.6.0\modules\dpm\samples\cascade_detect_sequence.cpp.obj
[1385/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaobjdetect.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\perf\perf_main.cpp.obj
[1386/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudalegacy.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\perf\perf_calib3d.cpp.obj
[1387/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_desc_tests.cpp.obj
[1388/3598] Building CXX object modules\world\CMakeFiles\example_dnn_objdetect_obj_detect.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_objdetect\samples\obj_detect.cpp.obj
[1389/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_basic_hetero_tests.cpp.obj
[1390/3598] Building CXX object modules\world\CMakeFiles\opencv_test_face.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\test\test_facemark.cpp.obj
[1391/3598] Building CXX object modules\world\CMakeFiles\opencv_test_face.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\test\test_bif.cpp.obj
[1392/3598] Building CXX object modules\world\CMakeFiles\opencv_test_face.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\test\test_face_align.cpp.obj
[1393/3598] Building CXX object modules\world\CMakeFiles\opencv_test_face.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\test\test_main.cpp.obj
[1394/3598] Building CXX object modules\world\CMakeFiles\opencv_test_face.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\test\test_facemark_aam.cpp.obj
[1395/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaobjdetect.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\test\test_objdetect.cpp.obj
[1396/3598] Building CXX object modules\world\CMakeFiles\opencv_test_face.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\test\test_facemark_lbf.cpp.obj
[1397/3598] Building CXX object modules\world\CMakeFiles\example_face_facerec_fisherfaces.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\facerec_fisherfaces.cpp.obj
[1398/3598] Building CXX object modules\world\CMakeFiles\opencv_test_face.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\test\test_loadsave.cpp.obj
[1399/3598] Building CXX object modules\world\CMakeFiles\example_face_facemark_demo_lbf.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\facemark_demo_lbf.cpp.obj
[1400/3598] Building CXX object modules\world\CMakeFiles\example_face_facerec_lbph.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\facerec_lbph.cpp.obj
[1401/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_array_tests.cpp.obj
[1402/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaobjdetect.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\perf\perf_objdetect.cpp.obj
[1403/3598] Building CXX object modules\world\CMakeFiles\example_face_facerec_eigenfaces.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\facerec_eigenfaces.cpp.obj
[1404/3598] Building CXX object modules\world\CMakeFiles\example_face_facemark_lbf_fitting.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\facemark_lbf_fitting.cpp.obj
[1405/3598] Building CXX object modules\world\CMakeFiles\example_face_facerec_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\facerec_demo.cpp.obj
[1406/3598] Building CXX object modules\world\CMakeFiles\opencv_test_face.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\test\test_mace.cpp.obj
[1407/3598] Building CXX object modules\world\CMakeFiles\example_face_facerec_video.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\facerec_video.cpp.obj
[1408/3598] Building CXX object modules\world\CMakeFiles\example_face_facemark_demo_aam.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\facemark_demo_aam.cpp.obj
[1409/3598] Building CXX object modules\world\CMakeFiles\example_face_facerec_save_load.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\facerec_save_load.cpp.obj
[1410/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\executor\gtbbexecutor_internal_tests.cpp.obj
[1411/3598] Building CXX object modules\world\CMakeFiles\example_face_mace_webcam.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\mace_webcam.cpp.obj
[1412/3598] Building CXX object modules\world\CMakeFiles\example_face_sampleDetectLandmarks.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\sampleDetectLandmarks.cpp.obj
[1413/3598] Building CXX object modules\world\CMakeFiles\example_face_sampleDetectLandmarksvideo.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\sampleDetectLandmarksvideo.cpp.obj
[1414/3598] Building CXX object modules\world\CMakeFiles\example_face_sample_train_landmark_detector2.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\sample_train_landmark_detector2.cpp.obj
[1415/3598] Building CXX object modules\world\CMakeFiles\example_face_sample_face_swapping.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\sample_face_swapping.cpp.obj
[1416/3598] Building CXX object modules\world\CMakeFiles\example_face_samplewriteconfigfile.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\samplewriteconfigfile.cpp.obj
[1417/3598] Building CXX object modules\world\CMakeFiles\example_face_sample_train_landmark_detector.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\samples\sample_train_landmark_detector.cpp.obj
[1418/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\common\gapi_render_tests.cpp.obj
[1419/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\common\gapi_compoundkernel_tests.cpp.obj
[1420/3598] Building CXX object modules\world\CMakeFiles\example_gapi_infer_ssd_onnx.dir\__\gapi\samples\infer_ssd_onnx.cpp.obj
[1421/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\common\gapi_stereo_tests.cpp.obj
[1422/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\cpu\gapi_operators_tests_cpu.cpp.obj
[1423/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\cpu\gapi_operators_tests_fluid.cpp.obj
[1424/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\cpu\gapi_stereo_tests_cpu.cpp.obj
[1425/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_frame_tests.cpp.obj
[1426/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_fluid_roi_test.cpp.obj
[1427/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\common\gapi_operators_tests.cpp.obj
[1428/3598] Building CXX object modules\world\CMakeFiles\example_gapi_infer_single_roi.dir\__\gapi\samples\infer_single_roi.cpp.obj
[1429/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_fluid_parallel_rois_test.cpp.obj
[1430/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_fluid_resize_test.cpp.obj
[1431/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_fluid_test_kernels.cpp.obj
[1432/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\common\gapi_video_tests.cpp.obj
[1433/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\cpu\gapi_ocv_stateful_kernel_tests.cpp.obj
[1434/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_gcompiled_tests.cpp.obj
[1435/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\cpu\gapi_video_tests_cpu.cpp.obj
[1436/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_scalar_tests.cpp.obj
[1437/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_plaidml_pipelines.cpp.obj
[1438/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_graph_meta_tests.cpp.obj
[1439/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_gpu_test.cpp.obj
[1440/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_gcomputation_tests.cpp.obj
[1441/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_sample_pipelines.cpp.obj
[1442/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_util_tests.cpp.obj
[1443/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_planar_test.cpp.obj
[1444/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_transform_tests.cpp.obj
[1445/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\infer\gapi_infer_ie_test.cpp.obj
[1446/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_smoke_test.cpp.obj
[1447/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\cpu\gapi_imgproc_tests_fluid.cpp.obj
[1448/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\infer\gapi_infer_onnx_test.cpp.obj
[1449/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_kernel_tests.cpp.obj
[1450/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\infer\gapi_infer_tests.cpp.obj
[1451/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_opaque_tests.cpp.obj
[1452/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_typed_tests.cpp.obj
[1453/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\cpu\gapi_core_tests_fluid.cpp.obj
[1454/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_backend_tests.cpp.obj
[1455/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gpu\gapi_operators_tests_gpu.cpp.obj
[1456/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_executor_tests.cpp.obj
[1457/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_gmetaarg_test.cpp.obj
[1458/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_proto_tests.cpp.obj
[1459/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gapi_fluid_test.cpp.obj
[1460/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gpu\gapi_imgproc_tests_gpu.cpp.obj
[1461/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_gmodel_builder_test.cpp.obj
[1462/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_recompilation_test.cpp.obj
[1463/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\oak\gapi_tests_oak.cpp.obj
[1464/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\own\gapi_types_tests.cpp.obj
[1465/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_island_fusion_tests.cpp.obj
[1466/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\render\ftp_render_test.cpp.obj
[1467/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_island_tests.cpp.obj
[1468/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_garg_test.cpp.obj
[1469/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\cpu\gapi_core_tests_cpu.cpp.obj
[1470/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_dynamic_graph.cpp.obj
[1471/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_perform_substitution_test.cpp.obj
[1472/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_pattern_matching_test.cpp.obj
[1473/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\own\conc_queue_tests.cpp.obj
[1474/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\rmat\rmat_integration_tests.cpp.obj
[1475/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\own\last_written_value_tests.cpp.obj
[1476/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_transactions_test.cpp.obj
[1477/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\own\scalar_tests.cpp.obj
[1478/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\cpu\gapi_imgproc_tests_cpu.cpp.obj
[1479/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\streaming\gapi_streaming_vpl_data_provider.cpp.obj
[1480/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\internal\gapi_int_vectorref_test.cpp.obj
[1481/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\own\mat_tests.cpp.obj
[1482/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\streaming\gapi_gstreamer_pipeline_facade_int_tests.cpp.obj
[1483/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\render\gapi_render_tests_ocv.cpp.obj
[1484/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\rmat\rmat_tests.cpp.obj
[1485/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\common\gapi_imgproc_tests.cpp.obj
[1486/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\common\gapi_core_tests.cpp.obj
[1487/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\test_main.cpp.obj
[1488/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\util\any_tests.cpp.obj
[1489/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\streaming\gapi_streaming_vpl_core_test.cpp.obj
[1490/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\streaming\gapi_streaming_vpp_preproc_test.cpp.obj
[1491/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\util\optional_tests.cpp.obj
[1492/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\gpu\gapi_core_tests_gpu.cpp.obj
[1493/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\streaming\gapi_streaming_vpl_device_selector.cpp.obj
[1494/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\streaming\gapi_streaming_sync_tests.cpp.obj
[1495/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\streaming\gapi_streaming_utils_test.cpp.obj
[1496/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\streaming\gapi_gstreamersource_tests.cpp.obj
[1497/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\streaming\gapi_streaming_source_perf_tests.cpp.obj
[1498/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\rmat\rmat_view_tests.cpp.obj
[1499/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\perf_main.cpp.obj
[1500/3598] Building CXX object modules\world\CMakeFiles\example_gapi_api_example.dir\__\gapi\samples\api_example.cpp.obj
[1501/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\s11n\gapi_sample_pipelines_s11n.cpp.obj
[1502/3598] Building CXX object modules\world\CMakeFiles\example_gapi_draw_example.dir\__\gapi\samples\draw_example.cpp.obj
[1503/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\common\gapi_render_perf_tests.cpp.obj
[1504/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\util\variant_tests.cpp.obj
[1505/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\perf_bench.cpp.obj
[1506/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\s11n\gapi_s11n_tests.cpp.obj
[1507/3598] Building CXX object modules\world\CMakeFiles\example_tracking_tracker.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\tracker.cpp.obj
[1508/3598] Building CXX object modules\world\CMakeFiles\example_tracking_tracker_dataset.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\tracker_dataset.cpp.obj
[1509/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\internal\gapi_compiler_perf_tests.cpp.obj
[1510/3598] Building CXX object modules\world\CMakeFiles\example_gapi_oak_copy.dir\__\gapi\samples\oak_copy.cpp.obj
[1511/3598] Building CXX object modules\world\CMakeFiles\example_gapi_oak_rgb_camera_encoding.dir\__\gapi\samples\oak_rgb_camera_encoding.cpp.obj
[1512/3598] Building CXX object modules\world\CMakeFiles\example_gapi_oak_basic_infer.dir\__\gapi\samples\oak_basic_infer.cpp.obj
[1513/3598] Building CXX object modules\world\CMakeFiles\example_gapi_oak_small_hetero_pipeline.dir\__\gapi\samples\oak_small_hetero_pipeline.cpp.obj
[1514/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\cpu\gapi_video_perf_tests_cpu.cpp.obj
[1515/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\common\gapi_video_perf_tests.cpp.obj
[1516/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\cpu\gapi_core_perf_tests_cpu.cpp.obj
[1517/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\cpu\gapi_core_perf_tests_fluid.cpp.obj
[1518/3598] Building CXX object modules\world\CMakeFiles\example_gapi_gaze_estimation.dir\__\gapi\samples\gaze_estimation.cpp.obj
[1519/3598] Building CXX object modules\world\CMakeFiles\example_gapi_face_detection_mtcnn.dir\__\gapi\samples\face_detection_mtcnn.cpp.obj
[1520/3598] Building CXX object modules\world\CMakeFiles\example_gapi_infer_ie_onnx_hybrid.dir\__\gapi\samples\infer_ie_onnx_hybrid.cpp.obj
[1521/3598] Building CXX object modules\world\CMakeFiles\example_gapi_semantic_segmentation.dir\__\gapi\samples\semantic_segmentation.cpp.obj
[1522/3598] Building CXX object modules\world\CMakeFiles\example_gapi_slides_sobel_cv.dir\__\gapi\samples\slides_sobel_cv.cpp.obj
[1523/3598] Building CXX object modules\world\CMakeFiles\opencv_test_optflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\test\test_main.cpp.obj
[1524/3598] Building CXX object modules\world\CMakeFiles\example_gapi_slides_blur_gapi.dir\__\gapi\samples\slides_blur_gapi.cpp.obj
[1525/3598] Building CXX object modules\world\CMakeFiles\example_gapi_slides_sobel_gapi.dir\__\gapi\samples\slides_sobel_gapi.cpp.obj
[1526/3598] Building CXX object modules\world\CMakeFiles\opencv_test_gapi.dir\__\gapi\test\streaming\gapi_streaming_tests.cpp.obj
[1527/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\render\gapi_render_perf_tests_ocv.cpp.obj
[1528/3598] Building CXX object modules\world\CMakeFiles\opencv_test_optflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\test\test_OF_accuracy.cpp.obj
[1529/3598] Building CXX object modules\world\CMakeFiles\opencv_test_optflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\test\test_motiontemplates.cpp.obj
[1530/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_optflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\perf\perf_main.cpp.obj
[1531/3598] Building CXX object modules\world\CMakeFiles\example_gapi_privacy_masking_camera.dir\__\gapi\samples\privacy_masking_camera.cpp.obj
[1532/3598] Building CXX object modules\world\CMakeFiles\opencv_test_optflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\test\test_tvl1optflow.cpp.obj
[1533/3598] Building CXX object modules\world\CMakeFiles\example_gapi_pipeline_modeling_tool.dir\__\gapi\samples\pipeline_modeling_tool.cpp.obj
[1534/3598] Building CXX object modules\world\CMakeFiles\opencv_test_optflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\test\ocl\test_motempl.cpp.obj
[1535/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_optflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\perf\perf_deepflow.cpp.obj
[1536/3598] Building CXX object modules\world\CMakeFiles\example_optflow_gpc_train.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\samples\gpc_train.cpp.obj
[1537/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_optflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\perf\perf_rlof.cpp.obj
[1538/3598] Building CXX object modules\world\CMakeFiles\example_optflow_motempl.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\samples\motempl.cpp.obj
[1539/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_optflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\perf\opencl\perf_optflow_dualTVL1.cpp.obj
[1540/3598] Building CXX object modules\world\CMakeFiles\example_gapi_onevpl_infer_single_roi.dir\__\gapi\samples\onevpl_infer_single_roi.cpp.obj
[1541/3598] Building CXX object modules\world\CMakeFiles\example_optflow_simpleflow_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\samples\simpleflow_demo.cpp.obj
[1542/3598] Building CXX object modules\world\CMakeFiles\example_optflow_tvl1_optical_flow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\samples\tvl1_optical_flow.cpp.obj
[1543/3598] Building CXX object modules\world\CMakeFiles\example_optflow_gpc_evaluate.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\samples\gpc_evaluate.cpp.obj
[1544/3598] Building CXX object modules\world\CMakeFiles\example_optflow_optical_flow_evaluation.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\samples\optical_flow_evaluation.cpp.obj
[1545/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\gpu\gapi_imgproc_perf_tests_gpu.cpp.obj
[1546/3598] Building CXX object modules\world\CMakeFiles\opencv_test_optflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\test\ocl\test_optflow_tvl1flow.cpp.obj
[1547/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_optflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\perf\perf_tvl1optflow.cpp.obj
[1548/3598] Building CXX object modules\world\CMakeFiles\example_optflow_pcaflow_demo.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\samples\pcaflow_demo.cpp.obj
[1549/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\cpu\gapi_imgproc_perf_tests_fluid.cpp.obj
[1550/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stitching.dir\__\stitching\test\test_exposure_compensate.cpp.obj
[1551/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stitching.dir\__\stitching\test\test_blenders.cpp.obj
[1552/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stitching.dir\__\stitching\test\test_blenders.cuda.cpp.obj
[1553/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stitching.dir\__\stitching\test\test_main.cpp.obj
[1554/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stitching.dir\__\stitching\test\ocl\test_warpers.cpp.obj
[1555/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_stitching.dir\__\stitching\perf\perf_main.cpp.obj
[1556/3598] Building CXX object modules\world\CMakeFiles\example_gapi_text_detection.dir\__\gapi\samples\text_detection.cpp.obj
[1557/3598] Building CXX object modules\world\CMakeFiles\opencv_test_tracking.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\test\test_main.cpp.obj
[1558/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stitching.dir\__\stitching\test\test_wave_correction.cpp.obj
[1559/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stitching.dir\__\stitching\test\test_matchers.cpp.obj
[1560/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stitching.dir\__\stitching\test\test_reprojection.cpp.obj
[1561/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stitching.dir\__\stitching\test\test_stitcher.cpp.obj
[1562/3598] Building CXX object modules\world\CMakeFiles\opencv_test_tracking.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\test\test_aukf.cpp.obj
[1563/3598] Building CXX object modules\world\CMakeFiles\opencv_test_tracking.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\test\test_trackers.cpp.obj
[1564/3598] Building CXX object modules\world\CMakeFiles\opencv_test_tracking.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\test\test_ukf.cpp.obj
[1565/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_tracking.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\perf\perf_main.cpp.obj
[1566/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\gpu\gapi_core_perf_tests_gpu.cpp.obj
[1567/3598] Building CXX object modules\world\CMakeFiles\example_tracking_kcf.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\kcf.cpp.obj
[1568/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_stitching.dir\__\stitching\perf\perf_estimators.cpp.obj
[1569/3598] Building CXX object modules\world\CMakeFiles\example_tracking_goturnTracker.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\goturnTracker.cpp.obj
[1570/3598] Building CXX object modules\world\CMakeFiles\example_tracking_benchmark.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\benchmark.cpp.obj
[1571/3598] Building CXX object modules\world\CMakeFiles\example_tracking_csrt.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\csrt.cpp.obj
[1572/3598] Building CXX object modules\world\CMakeFiles\opencv_test_tracking.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\test\test_trackerParametersIO.cpp.obj
[1573/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_stitching.dir\__\stitching\perf\opencl\perf_warpers.cpp.obj
[1574/3598] Building CXX object modules\world\CMakeFiles\example_tracking_multiTracker_dataset.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\multiTracker_dataset.cpp.obj
[1575/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\mathfuncs_core.dispatch.cpp.obj
[1576/3598] Building CXX object modules\world\CMakeFiles\example_tracking_multitracker.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\multitracker.cpp.obj
[1577/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\matrix.cpp.obj
[1578/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_tracking.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\perf\perf_trackers.cpp.obj
[1579/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_stitching.dir\__\stitching\perf\opencl\perf_stitch.cpp.obj
[1580/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\lpsolver.cpp.obj
[1581/3598] Building CXX object modules\world\CMakeFiles\example_tracking_tutorial_customizing_cn_tracker.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\tutorial_customizing_cn_tracker.cpp.obj
[1582/3598] Building CXX object modules\world\CMakeFiles\example_tracking_tutorial_introduction_to_tracker.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\tutorial_introduction_to_tracker.cpp.obj
[1583/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_stitching.dir\__\stitching\perf\perf_matchers.cpp.obj
[1584/3598] Building CXX object modules\world\CMakeFiles\example_tracking_tracking_by_matching.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\tracking_by_matching.cpp.obj
[1585/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\lut.cpp.obj
[1586/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_stitching.dir\__\stitching\perf\perf_stich.cpp.obj
[1587/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\mathfuncs.cpp.obj
[1588/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaoptflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\test\test_main.cpp.obj
[1589/3598] Building CXX object modules\world\CMakeFiles\example_tracking_tutorial_multitracker.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\samples\tutorial_multitracker.cpp.obj
[1590/3598] Building CXX object modules\world\CMakeFiles\example_cudaoptflow_optical_flow.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\samples\optical_flow.cpp.obj
[1591/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\test\test_block_matching.cpp.obj
[1592/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\test\test_qds_matching.cpp.obj
[1593/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\test\test_descriptors.cpp.obj
[1594/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaoptflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\perf\perf_main.cpp.obj
[1595/3598] Building CXX object modules\world\CMakeFiles\example_stereo_export_param_file.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\samples\export_param_file.cpp.obj
[1596/3598] Building CXX object modules\world\CMakeFiles\example_cudaoptflow_nvidia_optical_flow.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\samples\nvidia_optical_flow.cpp.obj
[1597/3598] Building CXX object modules\world\CMakeFiles\opencv_test_stereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\test\test_main.cpp.obj
[1598/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\matmul.dispatch.cpp.obj
[1599/3598] Building CXX object modules\world\CMakeFiles\example_stereo_dense_disparity.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\samples\dense_disparity.cpp.obj
[1600/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_stereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\perf\perf_main.cpp.obj
[1601/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudev\src\stub.cpp.obj
[1602/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\cpu\gapi_imgproc_perf_tests_cpu.cpp.obj
[1603/3598] Building CXX object modules\world\CMakeFiles\opencv_test_superres.dir\D_\opencv\opencv_contrib-4.6.0\modules\superres\test\test_main.cpp.obj
[1604/3598] Building CXX object modules\world\CMakeFiles\example_stereo_sample.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\samples\sample.cpp.obj
[1605/3598] Building CXX object modules\world\CMakeFiles\opencv_test_cudaoptflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\test\test_optflow.cpp.obj
[1606/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_superres.dir\D_\opencv\opencv_contrib-4.6.0\modules\superres\perf\perf_main.cpp.obj
[1607/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\common\gapi_imgproc_perf_tests.cpp.obj
[1608/3598] Building CXX object modules\world\CMakeFiles\opencv_test_superres.dir\D_\opencv\opencv_contrib-4.6.0\modules\superres\test\test_superres.cpp.obj
[1609/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_stereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\perf\perf_bm.cpp.obj
[1610/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videostab.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\test\test_main.cpp.obj
[1611/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videostab.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\test\test_motion_estimation.cpp.obj
[1612/3598] Building CXX object modules\world\CMakeFiles\opencv_test_videostab.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\test\test_stabilizer.cpp.obj
[1613/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_stereo.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\perf\perf_descriptor.cpp.obj
[1614/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_cudaoptflow.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\perf\perf_optflow.cpp.obj
[1615/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_superres.dir\D_\opencv\opencv_contrib-4.6.0\modules\superres\perf\perf_superres.cpp.obj
[1616/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\algorithm.cpp.obj
[1617/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\async.cpp.obj
[1618/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\buffer_area.cpp.obj
[1619/3598] Building CXX object modules\world\CMakeFiles\example_videostab_videostab.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\samples\videostab.cpp.obj
[1620/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\alloc.cpp.obj
[1621/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\array.cpp.obj
[1622/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\arithm.cpp.obj
[1623/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\command_line_parser.cpp.obj
[1624/3598] Building CXX object modules\world\CMakeFiles\opencv_perf_gapi.dir\__\gapi\perf\common\gapi_core_perf_tests.cpp.obj
[1625/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\check.cpp.obj
[1626/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\bindings_utils.cpp.obj
[1627/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\batch_distance.cpp.obj
[1628/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\channels.cpp.obj
[1629/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\count_non_zero.dispatch.cpp.obj
[1630/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\convert_c.cpp.obj
[1631/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\convert.dispatch.cpp.obj
[1632/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\copy.cpp.obj
[1633/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\conjugate_gradient.cpp.obj
[1634/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\arithm.dispatch.cpp.obj
[1635/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\cuda_info.cpp.obj
[1636/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\cuda_gpu_mat_nd.cpp.obj
[1637/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\convert_scale.dispatch.cpp.obj
[1638/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\cuda_gpu_mat.cpp.obj
[1639/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\cuda_host_mem.cpp.obj
[1640/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\cuda_stream.cpp.obj
[1641/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\gl_core_3_1.cpp.obj
[1642/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\datastructs.cpp.obj
[1643/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\downhill_simplex.cpp.obj
[1644/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\hal_internal.cpp.obj
[1645/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\dxt.cpp.obj
[1646/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\matrix_c.cpp.obj
[1647/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\logger.cpp.obj
[1648/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\lda.cpp.obj
[1649/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\matrix_iterator.cpp.obj
[1650/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\lapack.cpp.obj
[1651/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\glob.cpp.obj
[1652/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\kmeans.cpp.obj
[1653/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\directx.cpp.obj
[1654/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\matrix_sparse.cpp.obj
[1655/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\merge.dispatch.cpp.obj
[1656/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\matrix_decomp.cpp.obj
[1657/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\matrix_expressions.cpp.obj
[1658/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\minmax.cpp.obj
[1659/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\matrix_transform.cpp.obj
[1660/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\mean.dispatch.cpp.obj
[1661/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\matrix_operations.cpp.obj
[1662/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\opencl\runtime\opencl_clblas.cpp.obj
[1663/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\opencl\runtime\opencl_clfft.cpp.obj
[1664/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\opengl.cpp.obj
D:\opencv\opencv-4.6.0\modules\core\src\opengl.cpp(1676): warning C4459: declaration of 'clGetGLContextInfoKHR_pfn' hides global declaration
D:\opencv\opencv-4.6.0\modules\core\include\opencv2\core\opencl\runtime\autogenerated/opencl_gl.hpp(58): note: see declaration of 'clGetGLContextInfoKHR_pfn'
[1665/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\matrix_wrap.cpp.obj
[1666/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\norm.cpp.obj
[1667/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\opencl\runtime\opencl_core.cpp.obj
[1668/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\parallel\parallel_tbb.cpp.obj
[1669/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\out.cpp.obj
[1670/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\parallel\parallel_openmp.cpp.obj
[1671/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\ovx.cpp.obj
[1672/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\parallel_impl.cpp.obj
[1673/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\pca.cpp.obj
[1674/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\persistence_json.cpp.obj
[1675/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\persistence_base64_encoding.cpp.obj
[1676/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\tables.cpp.obj
[1677/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\parallel.cpp.obj
[1678/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\stat_c.cpp.obj
[1679/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\softfloat.cpp.obj
[1680/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\split.dispatch.cpp.obj
[1681/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\persistence_yml.cpp.obj
[1682/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\rand.cpp.obj
[1683/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\persistence_types.cpp.obj
[1684/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\sum.dispatch.cpp.obj
[1685/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\stat.dispatch.cpp.obj
[1686/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\parallel\parallel.cpp.obj
[1687/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\stl.cpp.obj
[1688/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\ocl.cpp.obj
[1689/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\persistence.cpp.obj
[1690/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\persistence_xml.cpp.obj
[1691/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\umatrix.cpp.obj
[1692/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\trace.cpp.obj
[1693/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\system.cpp.obj
[1694/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\utils\logtagconfigparser.cpp.obj
[1695/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_core.cpp.obj
[1696/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\src\arithm.cpp.obj
[1697/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\types.cpp.obj
[1698/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\utils\filesystem.cpp.obj
[1699/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\utils\samples.cpp.obj
[1700/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\utils\logtagmanager.cpp.obj
[1701/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\utils\datafile.cpp.obj
[1702/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\flann\src\flann.cpp.obj
[1703/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\core\src\va_intel.cpp.obj
[1704/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\src\reductions.cpp.obj
[1705/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\src\element_operations.cpp.obj
[1706/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\blend.cpp.obj
[1707/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\approx.cpp.obj
[1708/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\src\lut.cpp.obj
[1709/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaarithm\src\core.cpp.obj
[1710/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\color.cpp.obj
[1711/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\accum.cpp.obj
[1712/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\color_hsv.dispatch.cpp.obj
[1713/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\clahe.cpp.obj
[1714/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\canny.cpp.obj
[1715/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\convhull.cpp.obj
[1716/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\box_filter.dispatch.cpp.obj
[1717/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\color_rgb.dispatch.cpp.obj
[1718/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\contours.cpp.obj
[1719/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\deriv.cpp.obj
[1720/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\accum.dispatch.cpp.obj
[1721/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\colormap.cpp.obj
[1722/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\distransform.cpp.obj
[1723/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\color_lab.cpp.obj
[1724/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\emd.cpp.obj
[1725/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\demosaicing.cpp.obj
[1726/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\corner.cpp.obj
[1727/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\hershey_fonts.cpp.obj
[1728/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\cornersubpix.cpp.obj
[1729/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\geometry.cpp.obj
[1730/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\gabor.cpp.obj
[1731/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\featureselect.cpp.obj
[1732/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\main.cpp.obj
[1733/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\drawing.cpp.obj
[1734/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\color_yuv.dispatch.cpp.obj
[1735/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\filter.dispatch.cpp.obj
[1736/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\linefit.cpp.obj
[1737/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\floodfill.cpp.obj
[1738/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\generalized_hough.cpp.obj
[1739/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\min_enclosing_triangle.cpp.obj
[1740/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\grabcut.cpp.obj
[1741/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\hough.cpp.obj
[1742/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\lsd.cpp.obj
[1743/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\matchcontours.cpp.obj
[1744/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\intelligent_scissors.cpp.obj
[1745/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\intersection.cpp.obj
[1746/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\moments.cpp.obj
[1747/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\histogram.cpp.obj
[1748/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\morph.dispatch.cpp.obj
[1749/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\phasecorr.cpp.obj
[1750/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\imgwarp.cpp.obj
[1751/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\pyramids.cpp.obj
[1752/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\int8layers\reduce_layer.cpp.obj
[1753/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\bilateral_filter.dispatch.cpp.obj
[1754/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\segmentation.cpp.obj
[1755/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\int8layers\quantization_utils.cpp.obj
[1756/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\int8layers\fully_connected_layer.cpp.obj
[1757/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\int8layers\pooling_layer.cpp.obj
[1758/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\samplers.cpp.obj
[1759/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\rotcalipers.cpp.obj
[1760/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\thresh.cpp.obj
[1761/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\sumpixels.dispatch.cpp.obj
[1762/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\flann\src\miniflann.cpp.obj
[1763/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\tables.cpp.obj
[1764/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\spatialgradient.cpp.obj
[1765/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\intensity_transform\src\intensity_transform.cpp.obj
[1766/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\templmatch.cpp.obj
[1767/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\median_blur.dispatch.cpp.obj
[1768/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\subdivision2d.cpp.obj
[1769/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\utils.cpp.obj
[1770/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\shapedescr.cpp.obj
[1771/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\ann_mlp.cpp.obj
[1772/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\int8layers\scale_layer.cpp.obj
[1773/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\inner_functions.cpp.obj
[1774/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\intensity_transform\src\bimef.cpp.obj
[1775/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_imgproc.cpp.obj
[1776/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\int8layers\eltwise_layer.cpp.obj
[1777/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\smooth.dispatch.cpp.obj
[1778/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\em.cpp.obj
[1779/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\kdtree.cpp.obj
[1780/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\gbt.cpp.obj
[1781/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\boost.cpp.obj
[1782/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\connectedcomponents.cpp.obj
[1783/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\resize.cpp.obj
[1784/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\svmsgd.cpp.obj
[1785/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\nbayes.cpp.obj
[1786/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\data.cpp.obj
[1787/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\lr.cpp.obj
[1788/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\src\qualityssim.cpp.obj
[1789/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\rtrees.cpp.obj
[1790/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\knearest.cpp.obj
[1791/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\plot\src\plot.cpp.obj
[1792/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\src\qualitybrisque.cpp.obj
[1793/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\testset.cpp.obj
[1794/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\src\mapaffine.cpp.obj
[1795/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\src\mapper.cpp.obj
[1796/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\tree.cpp.obj
[1797/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\ml\src\svm.cpp.obj
[1798/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\phase_unwrapping\src\histogramphaseunwrapping.cpp.obj
[1799/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\src\qualitymse.cpp.obj
[1800/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\src\map.cpp.obj
[1801/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\src\mappergradsimilar.cpp.obj
[1802/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\src\mappergradshift.cpp.obj
[1803/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\src\mappergradeuclid.cpp.obj
[1804/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\src\mapshift.cpp.obj
[1805/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\quality\src\qualitygmsd.cpp.obj
[1806/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\src\mapprojec.cpp.obj
[1807/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\src\mappergradaffine.cpp.obj
[1808/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\src\mappergradproj.cpp.obj
[1809/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\reg\src\mapperpyramid.cpp.obj
[1810/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\surface_matching\src\pose_3d.cpp.obj
[1811/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\surface_matching\src\icp.cpp.obj
[1812/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\blend.cpp.obj
[1813/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\surface_matching\src\t_hash_int.cpp.obj
[1814/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\canny.cpp.obj
[1815/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\bilateral_filter.cpp.obj
[1816/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\corners.cpp.obj
[1817/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\color.cpp.obj
[1818/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\connectedcomponents.cpp.obj
[1819/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafilters\src\filtering.cpp.obj
[1820/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\hough_segments.cpp.obj
[1821/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\hough_circles.cpp.obj
[1822/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\mean_shift.cpp.obj
[1823/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\hough_lines.cpp.obj
[1824/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\surface_matching\src\ppf_helpers.cpp.obj
[1825/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\remap.cpp.obj
[1826/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\pyramids.cpp.obj
[1827/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\gftt.cpp.obj
[1828/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\histogram.cpp.obj
[1829/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\surface_matching\src\ppf_match_3d.cpp.obj
[1830/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\generalized_hough.cpp.obj
[1831/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\mssegmentation.cpp.obj
[1832/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\resize.cpp.obj
[1833/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaimgproc\src\match_template.cpp.obj
[1834/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudawarping\src\warp.cpp.obj
[1835/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\misc\tensorflow\graph.pb.cc.obj
[1836/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\misc\tensorflow\function.pb.cc.obj
[1837/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\misc\onnx\opencv-onnx.pb.cc.obj
[1838/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\misc\tensorflow\tensor_shape.pb.cc.obj
[1839/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\misc\tensorflow\attr_value.pb.cc.obj
[1840/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\misc\tensorflow\types.pb.cc.obj
[1841/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\misc\tensorflow\op_def.pb.cc.obj
[1842/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\misc\tensorflow\versions.pb.cc.obj
[1843/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\misc\tensorflow\tensor.pb.cc.obj
[1844/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\dnn_params.cpp.obj
[1845/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\dnn.cpp.obj
[1846/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\ie_ngraph.cpp.obj
[1847/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\dnn_utils.cpp.obj
[1848/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\dnn_read.cpp.obj
[1849/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\debug_utils.cpp.obj
[1850/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\caffe\caffe_importer.cpp.obj
[1851/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_superres\src\dnn_superres.cpp.obj
[1852/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\caffe\caffe_io.cpp.obj
[1853/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\caffe\caffe_shrinker.cpp.obj
[1854/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\graph_simplifier.cpp.obj
[1855/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_dnn.cpp.obj
[1856/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\halide_scheduler.cpp.obj
[1857/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\darknet\darknet_importer.cpp.obj
[1858/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\init.cpp.obj
[1859/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\int8layers\elementwise_layers.cpp.obj
[1860/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\affine_feature.cpp.obj
[1861/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layer.cpp.obj
[1862/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\misc\caffe\opencv-caffe.pb.cc.obj
[1863/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\int8layers\softmax_layer.cpp.obj
[1864/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\int8layers\convolution_layer.cpp.obj
[1865/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\int8layers\batch_norm_layer.cpp.obj
[1866/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\vulkan\vk_loader.cpp.obj
[1867/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\vulkan\vk_functions.cpp.obj
[1868/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layer_factory.cpp.obj
[1869/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\arg_layer.cpp.obj
[1870/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\accum_layer.cpp.obj
[1871/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\correlation_layer.cpp.obj
[1872/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\darknet\darknet_io.cpp.obj
[1873/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\blank_layer.cpp.obj
[1874/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\concat_layer.cpp.obj
[1875/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\fully_connected_layer.cpp.obj
[1876/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\const_layer.cpp.obj
[1877/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\batch_norm_layer.cpp.obj
[1878/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\cumsum_layer.cpp.obj
[1879/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\agast.cpp.obj
[1880/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\crop_and_resize_layer.cpp.obj
[1881/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\convolution_layer.cpp.obj
[1882/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\max_unpooling_layer.cpp.obj
[1883/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\flow_warp_layer.cpp.obj
[1884/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\eltwise_layer.cpp.obj
[1885/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\detection_output_layer.cpp.obj
[1886/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\lrn_layer.cpp.obj
[1887/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\elementwise_layers.cpp.obj
[1888/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\flatten_layer.cpp.obj
[1889/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\not_implemented_layer.cpp.obj
[1890/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\layers_common.cpp.obj
[1891/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\padding_layer.cpp.obj
[1892/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\permute_layer.cpp.obj
[1893/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\normalize_bbox_layer.cpp.obj
[1894/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\prior_box_layer.cpp.obj
[1895/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\scale_layer.cpp.obj
[1896/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\proposal_layer.cpp.obj
[1897/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\reduce_layer.cpp.obj
[1898/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\mvn_layer.cpp.obj
[1899/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\shuffle_channel_layer.cpp.obj
[1900/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\split_layer.cpp.obj
[1901/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\region_layer.cpp.obj
[1902/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\reorg_layer.cpp.obj
[1903/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\model.cpp.obj
[1904/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\net_openvino.cpp.obj
[1905/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\pooling_layer.cpp.obj
[1906/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\softmax_layer.cpp.obj
[1907/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\reshape_layer.cpp.obj
[1908/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\recurrent_layers.cpp.obj
[1909/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\resize_layer.cpp.obj
[1910/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\legacy_backend.cpp.obj
[1911/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\net.cpp.obj
[1912/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\net_impl_backend.cpp.obj
[1913/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\ocl4dnn\src\ocl4dnn_inner_product.cpp.obj
[1914/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\ocl4dnn\src\math_functions.cpp.obj
[1915/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\layers\slice_layer.cpp.obj
[1916/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\ocl4dnn\src\ocl4dnn_pool.cpp.obj
[1917/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\ocl4dnn\src\common.cpp.obj
[1918/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\ocl4dnn\src\ocl4dnn_lrn.cpp.obj
[1919/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\ocl4dnn\src\ocl4dnn_softmax.cpp.obj
[1920/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\op_vkcom.cpp.obj
[1921/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\nms.cpp.obj
[1922/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\ocl4dnn\src\ocl4dnn_conv_spatial.cpp.obj
[1923/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\torch\THDiskFile.cpp.obj
[1924/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\torch\THFile.cpp.obj
[1925/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\tengine4dnn\src\tengine_graph_convolution.cpp.obj
[1926/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\net_impl_fuse.cpp.obj
[1927/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\op_timvx.cpp.obj
[1928/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\op_halide.cpp.obj
[1929/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\registry.cpp.obj
[1930/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\op_inf_engine.cpp.obj
[1931/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\onnx\onnx_graph_simplifier.cpp.obj
[1932/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\op_cuda.cpp.obj
[1933/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\op_webnn.cpp.obj
[1934/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\tensorflow\tf_graph_simplifier.cpp.obj
[1935/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\shader\avg_pool_spv.cpp.obj
[1936/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\shader\conv48_spv.cpp.obj
[1937/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\shader\concat_spv.cpp.obj
[1938/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\net_quantization.cpp.obj
[1939/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\shader\prior_box_spv.cpp.obj
[1940/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\torch\THGeneral.cpp.obj
[1941/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\shader\dw_conv_spv.cpp.obj
[1942/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\shader\relu_spv.cpp.obj
[1943/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\tensorflow\tf_io.cpp.obj
[1944/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\net_impl.cpp.obj
[1945/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\shader\max_pool_spv.cpp.obj
[1946/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\shader\lrn_spv.cpp.obj
[1947/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\shader\conv_spv.cpp.obj
[1948/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\op_base.cpp.obj
[1949/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\torch\torch_importer.cpp.obj
[1950/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\shader\permute_spv.cpp.obj
[1951/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\op_pool.cpp.obj
[1952/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\op_conv.cpp.obj
[1953/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\context.cpp.obj
[1954/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\buffer.cpp.obj
[1955/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\internal.cpp.obj
[1956/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\op_softmax.cpp.obj
[1957/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\op_lrn.cpp.obj
[1958/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\op_permute.cpp.obj
[1959/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\op_concat.cpp.obj
[1960/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\shader\softmax_spv.cpp.obj
[1961/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\op_prior_box.cpp.obj
[1962/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\decodermgr.cpp.obj
[1963/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\binarizermgr.cpp.obj
[1964/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\detector\align.cpp.obj
[1965/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\cap_dshow.cpp.obj
[1966/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\tensor.cpp.obj
[1967/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\vkcom\src\op_relu.cpp.obj
[1968/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\draw.cpp.obj
[1969/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\brisk.cpp.obj
[1970/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\bagofwords.cpp.obj
[1971/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\onnx\onnx_importer.cpp.obj
[1972/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\gftt.cpp.obj
[1973/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\agast_score.cpp.obj
[1974/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\kaze\nldiffusion_functions.cpp.obj
[1975/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\dnn\src\tensorflow\tf_importer.cpp.obj
[1976/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\akaze.cpp.obj
[1977/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\dynamic.cpp.obj
[1978/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\cap_gstreamer.cpp.obj
[1979/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\blobdetector.cpp.obj
[1980/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\feature2d.cpp.obj
[1981/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\fast_score.cpp.obj
[1982/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\mser.cpp.obj
[1983/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\kaze\fed.cpp.obj
[1984/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\evaluation.cpp.obj
[1985/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\kaze.cpp.obj
[1986/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\kaze\KAZEFeatures.cpp.obj
[1987/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\fast.cpp.obj
[1988/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\keypoint.cpp.obj
[1989/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\kaze\AKAZEFeatures.cpp.obj
[1990/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\fuzzy\src\fuzzy_image.cpp.obj
[1991/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\cap_msmf.cpp.obj
[1992/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\orb.cpp.obj
[1993/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\sift.dispatch.cpp.obj
[1994/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_features2d.cpp.obj
[1995/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\hfs\src\hfs.cpp.obj
[1996/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\matchers.cpp.obj
[1997/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\fuzzy\src\fuzzy_F0_math.cpp.obj
[1998/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\main.cpp.obj
[1999/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\hfs\src\slic\slic.cpp.obj
[2000/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\fuzzy\src\fuzzy_F1_math.cpp.obj
[2001/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\hfs\src\magnitude\magnitude.cpp.obj
[2002/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\hfs\src\hfs_core.cpp.obj
[2003/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\hfs\src\merge\merge.cpp.obj
[2004/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\hfs\src\slic\gslic_engine.cpp.obj
[2005/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_gdcm.cpp.obj
[2006/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_bmp.cpp.obj
[2007/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_gdal.cpp.obj
[2008/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_base.cpp.obj
[2009/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\utils.cpp.obj
[2010/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_jpeg2000.cpp.obj
[2011/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_jpeg.cpp.obj
[2012/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\loadsave.cpp.obj
[2013/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_exr.cpp.obj
[2014/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_jpeg2000_openjpeg.cpp.obj
[2015/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_pam.cpp.obj
[2016/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_hdr.cpp.obj
[2017/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_webp.cpp.obj
[2018/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\bitstrm.cpp.obj
[2019/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_pxm.cpp.obj
[2020/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_png.cpp.obj
[2021/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_sunras.cpp.obj
[2022/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\rgbe.cpp.obj
[2023/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_pfm.cpp.obj
[2024/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\src\binary_descriptor_matcher.cpp.obj
[2025/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\grfmt_tiff.cpp.obj
[2026/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgcodecs\src\exif.cpp.obj
[2027/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\src\draw.cpp.obj
[2028/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\src\LSDDetector.cpp.obj
[2029/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\denoise_tvl1.cpp.obj
[2030/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\npr.cpp.obj
[2031/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\align.cpp.obj
[2032/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\calibrate.cpp.obj
[2033/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\line_descriptor\src\binary_descriptor.cpp.obj
[2034/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\tonemap.cpp.obj
[2035/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_photo.cpp.obj
[2036/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\hdr_common.cpp.obj
[2037/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\seamless_cloning_impl.cpp.obj
[2038/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\BING\CmFile.cpp.obj
[2039/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\motionSaliency.cpp.obj
[2040/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\BING\ValStructVec.cpp.obj
[2041/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\denoising.cuda.cpp.obj
[2042/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\seamless_cloning.cpp.obj
[2043/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\contrast_preserve.cpp.obj
[2044/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\BING\CmShow.cpp.obj
[2045/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\merge.cpp.obj
[2046/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\inpaint.cpp.obj
[2047/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\motionSaliencyBinWangApr2014.cpp.obj
[2048/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\BING\FilterTIG.cpp.obj
[2049/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\staticSaliencyFineGrained.cpp.obj
[2050/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\src\ocr_tesseract.cpp.obj
[2051/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\BING\objectnessBING.cpp.obj
[2052/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\saliency.cpp.obj
[2053/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\staticSaliencySpectralResidual.cpp.obj
[2054/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\objectness.cpp.obj
[2055/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\saliency\src\staticSaliency.cpp.obj
[2056/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\imgsource.cpp.obj
[2057/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\binarizer.cpp.obj
[2058/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\src\text_detectorCNN.cpp.obj
[2059/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\cap_images.cpp.obj
[2060/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\src\ocr_holistic.cpp.obj
[2061/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\binarybitmap.cpp.obj
[2062/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\videoio_registry.cpp.obj
[2063/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\binarizer\fast_window_binarizer.cpp.obj
[2064/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\container_avi.cpp.obj
[2065/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\binarizer\hybrid_binarizer.cpp.obj
[2066/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\cap_mjpeg_decoder.cpp.obj
[2067/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\bitarray.cpp.obj
[2068/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\binarizer\simple_adaptive_binarizer.cpp.obj
[2069/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\bytematrix.cpp.obj
[2070/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\videoio_c.cpp.obj
[2071/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\binarizer\global_histogram_binarizer.cpp.obj
[2072/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\detector\ssd_detector.cpp.obj
[2073/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\wechat_qrcode.cpp.obj
[2074/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\cap_mjpeg_encoder.cpp.obj
[2075/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\imagecut.cpp.obj
[2076/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\bitsource.cpp.obj
[2077/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\grid_sampler.cpp.obj
[2078/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\detector_result.cpp.obj
[2079/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\decoder_result.cpp.obj
[2080/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\greyscale_rotated_luminance_source.cpp.obj
[2081/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\greyscale_luminance_source.cpp.obj
[2082/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\kmeans.cpp.obj
[2083/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\src\ocr_hmm_decoder.cpp.obj
[2084/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\characterseteci.cpp.obj
[2085/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\bitmatrix.cpp.obj
[2086/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\perspective_transform.cpp.obj
[2087/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\binarizer\adaptive_threshold_mean_binarizer.cpp.obj
[2088/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\scale\super_scale.cpp.obj
[2089/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\backend_static.cpp.obj
[2090/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\cap.cpp.obj
[2091/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\src\ocr_beamsearch_decoder.cpp.obj
[2092/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\videoio\src\backend_plugin.cpp.obj
[2093/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\reedsolomon\genericgf.cpp.obj
[2094/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\str.cpp.obj
[2095/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\reedsolomon\genericgfpoly.cpp.obj
[2096/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\errorhandler.cpp.obj
[2097/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\unicomblock.cpp.obj
[2098/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\reedsolomon\reed_solomon_decoder.cpp.obj
[2099/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\decoder\datamask.cpp.obj
[2100/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\common\stringutils.cpp.obj
[2101/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\decoder\bitmatrixparser.cpp.obj
[2102/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\luminance_source.cpp.obj
[2103/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\detector\alignment_pattern.cpp.obj
[2104/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\photo\src\denoising.cpp.obj
[2105/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\src\text_detector_swt.cpp.obj
[2106/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\decoder\mode.cpp.obj
[2107/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\detector\finder_pattern_info.cpp.obj
[2108/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\detector\finder_pattern.cpp.obj
[2109/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\detector\alignment_pattern_finder.cpp.obj
[2110/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\decoder\datablock.cpp.obj
[2111/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\format_information.cpp.obj
[2112/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\error_correction_level.cpp.obj
[2113/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\detector\pattern_result.cpp.obj
[2114/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\resultpoint.cpp.obj
[2115/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\reader.cpp.obj
[2116/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\decoder\decoded_bit_stream_parser.cpp.obj
[2117/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\text\src\erfilter.cpp.obj
[2118/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\result.cpp.obj
[2119/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\decoder\decoder.cpp.obj
[2120/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\qrcode_reader.cpp.obj
[2121/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\src\bm3d_image_denoising.cpp.obj
[2122/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\src\dct_image_denoising.cpp.obj
[2123/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\src\tonemap.cpp.obj
[2124/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\src\grayworld_white_balance.cpp.obj
[2125/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\src\oilpainting.cpp.obj
[2126/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\detector\detector.cpp.obj
[2127/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\src\decoder\common\hybrid_binarizer.cpp.obj
[2128/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\src\simple_color_balance.cpp.obj
[2129/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\src\decoder\common\utils.cpp.obj
[2130/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\version.cpp.obj
[2131/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\src\decoder\abs_decoder.cpp.obj
[2132/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\wechat_qrcode\src\zxing\qrcode\detector\finder_pattern_finder.cpp.obj
[2133/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\src\decoder\ean13_decoder.cpp.obj
[2134/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\src\barcode.cpp.obj
[2135/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\src\learning_based_color_balance.cpp.obj
[2136/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\src\decoder\common\super_scale.cpp.obj
[2137/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\src\decoder\ean8_decoder.cpp.obj
[2138/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\src\detector\bardetect.cpp.obj
[2139/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\ap3p.cpp.obj
[2140/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\barcode\src\decoder\upcean_decoder.cpp.obj
[2141/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\calibinit.cpp.obj
[2142/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\compat_ptsetreg.cpp.obj
[2143/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\checkchessboard.cpp.obj
[2144/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\polynom_solver.cpp.obj
[2145/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\epnp.cpp.obj
[2146/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\main.cpp.obj
[2147/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\calibration_handeye.cpp.obj
[2148/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\fundam.cpp.obj
[2149/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\posit.cpp.obj
[2150/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\homography_decomp.cpp.obj
[2151/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\quadsubpix.cpp.obj
[2152/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\p3p.cpp.obj
[2153/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xphoto\src\inpainting.cpp.obj
[2154/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\levmarq.cpp.obj
[2155/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\ippe.cpp.obj
[2156/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\rho.cpp.obj
[2157/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\sqpnp.cpp.obj
[2158/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\circlesgrid.cpp.obj
[2159/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\stereobm.cpp.obj
[2160/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\ptsetreg.cpp.obj
[2161/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\solvepnp.cpp.obj
[2162/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\degeneracy.cpp.obj
[2163/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\dls_solver.cpp.obj
[2164/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\undistort.dispatch.cpp.obj
[2165/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\chessboard.cpp.obj
[2166/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\upnp.cpp.obj
[2167/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\triangulate.cpp.obj
[2168/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\five-point.cpp.obj
[2169/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\calibration.cpp.obj
[2170/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\gamma_values.cpp.obj
[2171/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\fundamental_solver.cpp.obj
[2172/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\stereosgbm.cpp.obj
[2173/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\fisheye.cpp.obj
[2174/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\essential_solver.cpp.obj
[2175/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_calib3d.cpp.obj
[2176/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\estimator.cpp.obj
[2177/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\sampler.cpp.obj
[2178/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\pnp_solver.cpp.obj
[2179/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\homography_solver.cpp.obj
[2180/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\src\cuvid_video_source.cpp.obj
[2181/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\local_optimization.cpp.obj
[2182/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\src\ffmpeg_video_source.cpp.obj
[2183/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\src\frame_queue.cpp.obj
[2184/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\quality.cpp.obj
[2185/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\termination.cpp.obj
[2186/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\utils.cpp.obj
[2187/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\usac\ransac_solvers.cpp.obj
[2188/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafeatures2d\src\brute_force_matcher.cpp.obj
[2189/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafeatures2d\src\feature2d_async.cpp.obj
[2190/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafeatures2d\src\orb.cpp.obj
[2191/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\src\video_parser.cpp.obj
[2192/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\src\thread.cpp.obj
[2193/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\src\video_decoder.cpp.obj
[2194/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\src\video_reader.cpp.obj
[2195/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\src\video_source.cpp.obj
[2196/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudafeatures2d\src\fast.cpp.obj
[2197/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\stereosgm.cpp.obj
[2198/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\stereocsbp.cpp.obj
[2199/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\ar_hmdb.cpp.obj
[2200/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudacodec\src\video_writer.cpp.obj
[2201/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\stereobm.cpp.obj
[2202/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\util.cpp.obj
[2203/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\dataset.cpp.obj
[2204/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\ar_sports.cpp.obj
[2205/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\disparity_bilateral_filter.cpp.obj
[2206/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\gr_skig.cpp.obj
[2207/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\hpe_parse.cpp.obj
[2208/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\gr_chalearn.cpp.obj
[2209/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudastereo\src\stereobp.cpp.obj
[2210/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\ir_affine.cpp.obj
[2211/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\fr_lfw.cpp.obj
[2212/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\is_bsds.cpp.obj
[2213/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\msm_middlebury.cpp.obj
[2214/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\calib3d\src\dls.cpp.obj
[2215/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\fr_adience.cpp.obj
[2216/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\is_weizmann.cpp.obj
[2217/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\ir_robot.cpp.obj
[2218/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\msm_epfl.cpp.obj
[2219/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\hpe_humaneva.cpp.obj
[2220/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\or_sun.cpp.obj
[2221/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\tinyxml2\tinyxml2.cpp.obj
[2222/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\or_mnist.cpp.obj
[2223/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\pd_caltech.cpp.obj
[2224/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\or_imagenet.cpp.obj
[2225/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\sr_div2k.cpp.obj
[2226/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\sr_bsds.cpp.obj
[2227/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\or_pascal.cpp.obj
[2228/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\pd_inria.cpp.obj
[2229/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\sr_general100.cpp.obj
[2230/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\slam_tumindoor.cpp.obj
[2231/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\tr_svt.cpp.obj
[2232/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\slam_kitti.cpp.obj
[2233/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\tr_chars.cpp.obj
[2234/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\track_vot.cpp.obj
[2235/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\util.cpp.obj
[2236/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\track_alov.cpp.obj
[2237/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\datasets\src\tr_icdar.cpp.obj
[2238/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\charts.cpp.obj
[2239/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\highgui\src\roiSelector.cpp.obj
[2240/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\checker_model.cpp.obj
[2241/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\bound_min.cpp.obj
[2242/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\color.cpp.obj
[2243/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\utils.cpp.obj
[2244/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\io.cpp.obj
[2245/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\highgui\src\window.cpp.obj
[2246/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\highgui\src\window_w32.cpp.obj
[2247/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\linearize.cpp.obj
[2248/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\operations.cpp.obj
[2249/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\distance.cpp.obj
[2250/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\highgui\src\backend.cpp.obj
[2251/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\ccm.cpp.obj
[2252/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\graph_cluster.cpp.obj
[2253/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\common.cpp.obj
[2254/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\mcc.cpp.obj
[2255/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\wiener_filter.cpp.obj
[2256/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\objdetect\src\face_detect.cpp.obj
[2257/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\debug.cpp.obj
[2258/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\objdetect\src\detection_based_tracker.cpp.obj
[2259/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\objdetect\src\face_recognize.cpp.obj
[2260/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_objdetect.cpp.obj
[2261/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\objdetect\src\main.cpp.obj
[2262/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\objdetect\src\hog.cpp.obj
[2263/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\objdetect\src\cascadedetect_convert.cpp.obj
[2264/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\objdetect\src\qrcode_encoder.cpp.obj
[2265/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\objdetect\src\cascadedetect.cpp.obj
[2266/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\colorspace.cpp.obj
[2267/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rapid\src\histogram.cpp.obj
[2268/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\dqb.cpp.obj
[2269/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rapid\src\rapid.cpp.obj
[2270/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\depth_cleaner.cpp.obj
[2271/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\mcc\src\checker_detector.cpp.obj
[2272/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\colored_kinfu.cpp.obj
[2273/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\depth_registration.cpp.obj
[2274/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\depth_to_3d.cpp.obj
[2275/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\colored_tsdf.cpp.obj
[2276/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\fourier_descriptors.cpp.obj
[2277/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\l0_smooth.cpp.obj
[2278/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\joint_bilateral_filter.cpp.obj
[2279/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\dynafu.cpp.obj
[2280/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\dynafu_tsdf.cpp.obj
[2281/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\guided_filter.cpp.obj
[2282/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\graphsegmentation.cpp.obj
[2283/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\kinfu.cpp.obj
[2284/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\kinfu_frame.cpp.obj
[2285/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\fast_icp.cpp.obj
[2286/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\objdetect\src\qrcode.cpp.obj
[2287/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\normal.cpp.obj
[2288/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\linemod.cpp.obj
[2289/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_rgbd.cpp.obj
[2290/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\odometry.cpp.obj
[2291/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\utils.cpp.obj
[2292/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\shape\src\emdL1.cpp.obj
[2293/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\bgfg_gaussmix2.cpp.obj
[2294/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\shape\src\hist_cost.cpp.obj
[2295/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\large_kinfu.cpp.obj
[2296/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\shape\src\haus_dis.cpp.obj
[2297/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\tsdf_functions.cpp.obj
[2298/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\volume.cpp.obj
[2299/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\structured_light\src\graycodepattern.cpp.obj
[2300/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\shape\src\aff_trans.cpp.obj
[2301/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\plane.cpp.obj
[2302/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\shape\src\tps_trans.cpp.obj
[2303/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\bgfg_KNN.cpp.obj
[2304/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\camshift.cpp.obj
[2305/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\shape\src\sc_dis.cpp.obj
[2306/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\hash_tsdf.cpp.obj
[2307/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\pose_graph.cpp.obj
[2308/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\tsdf.cpp.obj
[2309/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\kalman.cpp.obj
[2310/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\ecc.cpp.obj
[2311/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\optical_flow_io.cpp.obj
[2312/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\detail\tracker_mil_model.cpp.obj
[2313/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\dis_flow.cpp.obj
[2314/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\detail\tracker_feature_set.cpp.obj
[2315/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\optflowgf.cpp.obj
[2316/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\nonrigid_icp.cpp.obj
[2317/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\structured_light\src\sinusoidalpattern.cpp.obj
[2318/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\lkpyramid.cpp.obj
[2319/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\detail\tracker_model.cpp.obj
[2320/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\detail\tracker_feature.cpp.obj
[2321/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\detail\tracking_feature.cpp.obj
[2322/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\detail\tracker_state_estimator.cpp.obj
[2323/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\detail\tracker_mil_state.cpp.obj
[2324/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\tracker.cpp.obj
[2325/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\rgbd\src\warpfield.cpp.obj
[2326/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\detail\tracking_online_mil.cpp.obj
[2327/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\tracker_mil.cpp.obj
[2328/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\detail\tracker_sampler.cpp.obj
[2329/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\detail\tracker_sampler_algorithm.cpp.obj
[2330/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\tracker_goturn.cpp.obj
[2331/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\variational_refinement.cpp.obj
[2332/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\video\src\tracking\tracker_dasiamrpn.cpp.obj
[2333/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\logos\Point.cpp.obj
[2334/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_video.cpp.obj
[2335/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\daisy.cpp.obj
[2336/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\logos\Logos.cpp.obj
[2337/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\fast.cpp.obj
[2338/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\logos\Match.cpp.obj
[2339/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\logos\PointPair.cpp.obj
[2340/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\latch.cpp.obj
[2341/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\boostdesc.cpp.obj
[2342/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\pct_signatures\pct_clusterizer.cpp.obj
[2343/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\beblid.cpp.obj
[2344/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\ellipticKeyPoint.cpp.obj
[2345/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\gms.cpp.obj
[2346/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\affine_feature2d.cpp.obj
[2347/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\surf.ocl.cpp.obj
[2348/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\logos.cpp.obj
[2349/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\stardetector.cpp.obj
[2350/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\msd.cpp.obj
[2351/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\pct_signatures\pct_sampler.cpp.obj
[2352/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\lucid.cpp.obj
[2353/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\surf.cuda.cpp.obj
[2354/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\freak.cpp.obj
[2355/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_xfeatures2d.cpp.obj
[2356/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\pct_signatures.cpp.obj
[2357/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\pct_signatures\grayscale_bitmap.cpp.obj
[2358/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\harris_lapace_detector.cpp.obj
[2359/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\surf.cpp.obj
[2360/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\anisodiff.cpp.obj
[2361/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\pct_signatures_sqfd.cpp.obj
[2362/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\tbmr.cpp.obj
[2363/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\xfeatures2d_init.cpp.obj
[2364/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\adaptive_manifold_filter_n.cpp.obj
[2365/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\vgg.cpp.obj
[2366/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\brightedges.cpp.obj
[2367/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\bilateral_texture_filter.cpp.obj
[2368/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\domain_transform.cpp.obj
[2369/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\dtfilter_cpu.cpp.obj
[2370/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\fbs_filter.cpp.obj
[2371/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\disparity_filters.cpp.obj
[2372/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\deriche_filter.cpp.obj
[2373/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\fgs_filter.cpp.obj
[2374/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\edgeaware_filters_common.cpp.obj
[2375/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\fast_line_detector.cpp.obj
[2376/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\edgeboxes.cpp.obj
[2377/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\kernels_stereo.cpp.obj
[2378/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\lsc.cpp.obj
[2379/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\edgepreserving_filter.cpp.obj
[2380/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\peilin.cpp.obj
[2381/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\ridgedetectionfilter.cpp.obj
[2382/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xfeatures2d\src\brief.cpp.obj
[2383/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\niblack_thresholding.cpp.obj
[2384/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\fast_hough_transform.cpp.obj
[2385/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\estimated_covariance.cpp.obj
[2386/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\rolling_guidance_filter.cpp.obj
[2387/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\kernels_streaming.cpp.obj
[2388/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\radon_transform.cpp.obj
[2389/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\run_length_morphology.cpp.obj
[2390/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\quaternion.cpp.obj
[2391/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\edge_drawing.cpp.obj
[2392/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\thinning.cpp.obj
[2393/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\kernels_nnparsers.cpp.obj
[2394/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\paillou_filter.cpp.obj
[2395/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xobjdetect\src\lbpfeatures.cpp.obj
[2396/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\seeds.cpp.obj
[2397/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xobjdetect\src\feature_evaluator.cpp.obj
[2398/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\kernels_video.cpp.obj
[2399/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\sparse_match_interpolators.cpp.obj
[2400/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_ximgproc.cpp.obj
[2401/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bgsegm\src\bgfg_gaussmix.cpp.obj
[2402/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\scansegment.cpp.obj
[2403/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\src\zmaxheap.cpp.obj
[2404/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\src\imagelogpolprojection.cpp.obj
[2405/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\src\apriltag_quad_thresh.cpp.obj
[2406/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\kernels_core.cpp.obj
[2407/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bgsegm\src\synthetic_seq.cpp.obj
[2408/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\structured_edge_detection.cpp.obj
[2409/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\weighted_median_filter.cpp.obj
[2410/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bgsegm\src\bgfg_subcnt.cpp.obj
[2411/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xobjdetect\src\waldboost.cpp.obj
[2412/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\src\retina_ocl.cpp.obj
[2413/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\xobjdetect\src\wbdetector.cpp.obj
[2414/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\src\dictionary.cpp.obj
[2415/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\src\basicretinafilter.cpp.obj
[2416/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bgsegm\src\bgfg_gsoc.cpp.obj
[2417/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bgsegm\src\bgfg_gmg.cpp.obj
[2418/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\src\magnoretinafilter.cpp.obj
[2419/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_bioinspired.cpp.obj
[2420/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\src\retina.cpp.obj
[2421/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\selectivesearchsegmentation.cpp.obj
[2422/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ximgproc\src\slic.cpp.obj
[2423/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\src\parvoretinafilter.cpp.obj
[2424/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\kernels_imgproc.cpp.obj
[2425/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\src\retinacolor.cpp.obj
[2426/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\src\retinafilter.cpp.obj
[2427/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\src\charuco.cpp.obj
[2428/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\src\transientareassegmentationmodule.cpp.obj
[2429/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\aruco\src\aruco.cpp.obj
[2430/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\bioinspired\src\retinafasttonemapping.cpp.obj
[2431/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ccalib\src\ccalib.cpp.obj
[2432/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudabgsegm\src\mog.cpp.obj
[2433/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudabgsegm\src\mog2.cpp.obj
[2434/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ccalib\src\randpattern.cpp.obj
[2435/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\bm.cpp.obj
[2436/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\dpm\src\dpm_convolution.cpp.obj
[2437/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\dpm\src\dpm_nms.cpp.obj
[2438/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\dpm\src\dpm_cascade_detector.cpp.obj
[2439/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ccalib\src\multicalib.cpp.obj
[2440/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\ccalib\src\omnidir.cpp.obj
[2441/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\calib3d.cpp.obj
[2442/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\bm_fast.cpp.obj
[2443/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\image_pyramid.cpp.obj
[2444/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\needle_map.cpp.obj
[2445/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\graphcuts.cpp.obj
[2446/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\dpm\src\dpm_cascade.cpp.obj
[2447/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\hog.cpp.obj
[2448/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\gmg.cpp.obj
[2449/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\interpolate_frames.cpp.obj
[2450/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\face_basic.cpp.obj
[2451/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\NCV.cpp.obj
[2452/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudalegacy\src\fgd.cpp.obj
[2453/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\bif.cpp.obj
[2454/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\predict_collector.cpp.obj
[2455/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaobjdetect\src\cascadeclassifier.cpp.obj
[2456/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\dpm\src\dpm_feature.cpp.obj
[2457/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\dnn_objdetect\src\core_detect.cpp.obj
[2458/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\eigen_faces.cpp.obj
[2459/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\dpm\src\dpm_model.cpp.obj
[2460/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\face_alignment.cpp.obj
[2461/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\mace.cpp.obj
[2462/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\facerec.cpp.obj
[2463/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\facemark.cpp.obj
[2464/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\fisher_faces.cpp.obj
[2465/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\facemarkLBF.cpp.obj
[2466/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\lbph_faces.cpp.obj
[2467/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\utils\itt.cpp.obj
[2468/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\facemarkAAM.cpp.obj
[2469/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\trainFacemark.cpp.obj
[2470/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\getlandmarks.cpp.obj
[2471/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\garray.cpp.obj
[2472/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\gorigin.cpp.obj
[2473/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\gopaque.cpp.obj
[2474/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\face\src\regtree.cpp.obj
[2475/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\operators.cpp.obj
[2476/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\rmat.cpp.obj
[2477/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\gframe.cpp.obj
[2478/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\src\deepflow.cpp.obj
[2479/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\gscalar.cpp.obj
[2480/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\grunarg.cpp.obj
[2481/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\media.cpp.obj
[2482/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\gnode.cpp.obj
[2483/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\gmat.cpp.obj
[2484/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\gstreamer\gstreamerenv.cpp.obj
[2485/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\gstreamer\gstreamer_media_adapter.cpp.obj
[2486/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\gstreamer\gstreamer_buffer_utils.cpp.obj
[2487/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\gbackend.cpp.obj
[2488/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\gcall.cpp.obj
[2489/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\render_ocv.cpp.obj
[2490/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\gkernel.cpp.obj
[2491/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\gproto.cpp.obj
[2492/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\gcomputation.cpp.obj
[2493/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\ginfer.cpp.obj
[2494/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\gcompiled.cpp.obj
[2495/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\render.cpp.obj
[2496/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\executor\gtbbexecutor.cpp.obj
[2497/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\gmodelbuilder.cpp.obj
[2498/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\passes\islands.cpp.obj
[2499/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\gmodel.cpp.obj
[2500/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\gstreaming.cpp.obj
[2501/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\passes\helpers.cpp.obj
[2502/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\passes\transformations.cpp.obj
[2503/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\passes\dump_dot.cpp.obj
[2504/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\passes\perform_substitution.cpp.obj
[2505/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\executor\gasync.cpp.obj
[2506/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\passes\meta.cpp.obj
[2507/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\executor\gexecutor.cpp.obj
[2508/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\passes\streaming.cpp.obj
[2509/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\passes\pattern_matching.cpp.obj
[2510/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\cpu\gcpucore.cpp.obj
[2511/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\fluid\gfluidbuffer.cpp.obj
[2512/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\cpu\gcpustereo.cpp.obj
[2513/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\passes\intrin.cpp.obj
[2514/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\passes\exec.cpp.obj
[2515/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\cpu\gcpubackend.cpp.obj
[2516/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\cpu\gcpuvideo.cpp.obj
[2517/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\cpu\gnnparsers.cpp.obj
[2518/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\passes\kernels.cpp.obj
[2519/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\gislandmodel.cpp.obj
[2520/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\cpu\gcpukernel.cpp.obj
[2521/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\compiler\gcompiler.cpp.obj
[2522/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\plaidml\gplaidmlbackend.cpp.obj
[2523/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\ie\giebackend\giewrapper.cpp.obj
[2524/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\cpu\gcpuimgproc.cpp.obj
[2525/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\fluid\gfluidimgproc.cpp.obj
[2526/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\oak\goak_memory_adapters.cpp.obj
[2527/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\fluid\gfluidimgproc_func.dispatch.cpp.obj
[2528/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\ocl\goclbackend.cpp.obj
[2529/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\oak\goakbackend.cpp.obj
[2530/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\executor\gstreamingexecutor.cpp.obj
[2531/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\oak\goak.cpp.obj
[2532/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\ocl\goclkernel.cpp.obj
[2533/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\file_data_provider.cpp.obj
[2534/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\fluid\gfluidbackend.cpp.obj
[2535/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\ocl\goclimgproc.cpp.obj
[2536/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\data_provider_interface_exception.cpp.obj
[2537/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\source_priv.cpp.obj
[2538/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\utils.cpp.obj
[2539/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\onnx\gonnxbackend.cpp.obj
[2540/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\plaidml\gplaidmlcore.cpp.obj
[2541/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\cfg_params_parser.cpp.obj
[2542/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\accelerators\surface\cpu_frame_adapter.cpp.obj
[2543/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\ocl\goclcore.cpp.obj
[2544/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\accelerators\accel_policy_cpu.cpp.obj
[2545/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\ie\giebackend.cpp.obj
[2546/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\accelerators\accel_policy_va_api.cpp.obj
[2547/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\engine\processing_engine_base.cpp.obj
[2548/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\accelerators\accel_policy_dx11.cpp.obj
[2549/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\engine\engine_session.cpp.obj
[2550/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\accelerators\surface\base_frame_adapter.cpp.obj
[2551/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\accelerators\dx11_alloc_resource.cpp.obj
[2552/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\render\ft_render.cpp.obj
[2553/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\engine\decode\decode_session.cpp.obj
[2554/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\engine\transcode\transcode_engine_legacy.cpp.obj
[2555/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\engine\decode\decode_engine_legacy.cpp.obj
[2556/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\engine\preproc\preproc_engine.cpp.obj
[2557/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\source.cpp.obj
[2558/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\engine\transcode\transcode_session.cpp.obj
[2559/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\accelerators\utils\shared_lock.cpp.obj
[2560/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\accelerators\surface\surface.cpp.obj
[2561/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\engine\preproc\preproc_session.cpp.obj
[2562/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\data_provider_dispatcher.cpp.obj
[2563/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\demux\async_mfp_demux_data_provider.cpp.obj
[2564/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\cfg_param_device_selector.cpp.obj
[2565/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\accelerators\surface\surface_pool.cpp.obj
[2566/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\common\gcompoundkernel.cpp.obj
[2567/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\common\gcompoundbackend.cpp.obj
[2568/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\cfg_params.cpp.obj
[2569/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\render\grenderocv.cpp.obj
[2570/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\api\s11n.cpp.obj
[2571/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\device_selector_interface.cpp.obj
[2572/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\common\gmetabackend.cpp.obj
[2573/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\accelerators\surface\dx11_frame_adapter.cpp.obj
[2574/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\ie\bindings_ie.cpp.obj
[2575/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\streaming\gstreamingbackend.cpp.obj
[2576/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\stat.sse4_2.cpp.obj
[2577/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\python\gpythonbackend.cpp.obj
[2578/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\src\pcaflow.cpp.obj
[2579/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\sift.sse4_1.cpp.obj
[2580/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\src\interfaces.cpp.obj
[2581/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_optflow.cpp.obj
[2582/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\src\rlofflow.cpp.obj
[2583/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\gstreamer\gstreamersource.cpp.obj
[2584/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\engine\preproc\preproc_dispatcher.cpp.obj
[2585/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\src\sparsetodenseflow.cpp.obj
[2586/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\onevpl\engine\preproc_engine_interface.cpp.obj
[2587/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\gstreamer\gstreamerpipeline.cpp.obj
[2588/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\streaming\gstreamer\gstreamer_pipeline_facade.cpp.obj
[2589/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\fluid\gfluidcore_func.dispatch.cpp.obj
[2590/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\smooth.sse4_1.cpp.obj
[2591/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\src\motempl.cpp.obj
[2592/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\src\rlof\geo_interpolation.cpp.obj
[2593/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\src\simpleflow.cpp.obj
[2594/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\fluid\gfluidcore.cpp.obj
[2595/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\src\sparse_matching_gpc.cpp.obj
[2596/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\src\tvl1flow.cpp.obj
[2597/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\gapi\src\backends\common\serialization.cpp.obj
[2598/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_stitching.cpp.obj
[2599/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\optflow\src\rlof\rlof_localflow.cpp.obj
[2600/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\exposure_compensate.cpp.obj
[2601/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\camera.cpp.obj
[2602/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\matchers.cpp.obj
[2603/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\onlineBoosting.cpp.obj
[2604/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\gtrUtils.cpp.obj
[2605/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\multiTracker_alt.cpp.obj
[2606/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\kuhn_munkres.cpp.obj
[2607/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\featureColorName.cpp.obj
[2608/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\augmented_unscented_kalman.cpp.obj
[2609/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\tldEnsembleClassifier.cpp.obj
[2610/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\mosseTracker.cpp.obj
[2611/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\feature.cpp.obj
[2612/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\tldDetector.cpp.obj
[2613/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\tldDataset.cpp.obj
[2614/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\backends\fluid\gfluidimgproc_func.sse4_1.cpp.obj
[2615/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\autocalib.cpp.obj
[2616/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\motion_estimators.cpp.obj
[2617/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\warpers_cuda.cpp.obj
[2618/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\tldTracker.cpp.obj
[2619/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\util.cpp.obj
[2620/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\backends\fluid\gfluidcore_func.sse4_1.cpp.obj
[2621/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\tracker.cpp.obj
[2622/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerCSRTScaleEstimation.cpp.obj
[2623/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\timelapsers.cpp.obj
[2624/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\warpers.cpp.obj
[2625/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerBoostingModel.cpp.obj
[2626/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\blenders.cpp.obj
[2627/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerCSRTSegmentation.cpp.obj
[2628/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\tldModel.cpp.obj
[2629/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\multiTracker.cpp.obj
[2630/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\tldUtils.cpp.obj
[2631/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\seam_finders.cpp.obj
[2632/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerCSRTUtils.cpp.obj
[2633/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\stitching\src\stitcher.cpp.obj
[2634/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerFeatureSet.cpp.obj
[2635/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_tracking.cpp.obj
[2636/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerMedianFlow.cpp.obj
[2637/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerFeature.cpp.obj
[2638/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerBoosting.cpp.obj
[2639/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerKCF.cpp.obj
[2640/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerCSRT.cpp.obj
[2641/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\farneback.cpp.obj
[2642/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerMIL_legacy.cpp.obj
[2643/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerStateEstimator.cpp.obj
[2644/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerSampler.cpp.obj
[2645/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\brox.cpp.obj
[2646/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\src\quasi_dense_stereo.cpp.obj
[2647/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\src\descriptor.cpp.obj
[2648/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\unscented_kalman.cpp.obj
[2649/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\tracking_utils.cpp.obj
[2650/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\trackerSamplerAlgorithm.cpp.obj
[2651/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\src\stereo_binary_bm.cpp.obj
[2652/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\superres\src\frame_source.cpp.obj
[2653/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\pyrlk.cpp.obj
[2654/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\tvl1flow.cpp.obj
[2655/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\superres\src\input_array_utility.cpp.obj
[2656/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\opencl_kernels_superres.cpp.obj
[2657/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\cudaoptflow\src\nvidiaOpticalFlow.cpp.obj
[2658/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\src\optical_flow.cpp.obj
[2659/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\stereo\src\stereo_binary_sgbm.cpp.obj
[2660/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\superres\src\btv_l1.cpp.obj
[2661/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\superres\src\btv_l1_cuda.cpp.obj
[2662/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\src\world_init.cpp.obj
[2663/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\src\fast_marching.cpp.obj
[2664/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\tracking\src\tracking_by_matching.cpp.obj
[2665/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\superres\src\super_resolution.cpp.obj
[2666/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\superres\src\optical_flow.cpp.obj
[2667/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\src\log.cpp.obj
[2668/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\src\deblurring.cpp.obj
[2669/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\src\global_motion.cpp.obj
[2670/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\resize.sse4_1.cpp.obj
[2671/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\src\frame_source.cpp.obj
[2672/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\src\outlier_rejection.cpp.obj
[2673/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\src\motion_stabilizing.cpp.obj
[2674/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\src\wobble_suppression.cpp.obj
[2675/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\box_filter.sse4_1.cpp.obj
[2676/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\src\inpainting.cpp.obj
[2677/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\imgwarp.sse4_1.cpp.obj
[2678/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\accum.sse4_1.cpp.obj
[2679/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\stat.avx2.cpp.obj
[2680/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\mathfuncs_core.avx2.cpp.obj
[2681/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\color_hsv.sse4_1.cpp.obj
[2682/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\color_rgb.sse4_1.cpp.obj
[2683/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\corner.avx.cpp.obj
[2684/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\D_\opencv\opencv_contrib-4.6.0\modules\videostab\src\stabilizer.cpp.obj
[2685/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\mathfuncs_core.avx.cpp.obj
[2686/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\accum.avx.cpp.obj
[2687/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\arithm.sse4_1.cpp.obj
[2688/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\color_yuv.sse4_1.cpp.obj
[2689/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\resize.avx2.cpp.obj
[2690/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\count_non_zero.avx2.cpp.obj
[2691/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\matmul.avx2.cpp.obj
[2692/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\mean.avx2.cpp.obj
[2693/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\imgproc\src\imgwarp.avx2.cpp.obj
[2694/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\layers\layers_common.avx.cpp.obj
[2695/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\split.avx2.cpp.obj
[2696/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\median_blur.sse4_1.cpp.obj
[2697/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\sum.avx2.cpp.obj
[2698/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\convert.avx2.cpp.obj
[2699/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\morph.sse4_1.cpp.obj
[2700/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\matmul.sse4_1.cpp.obj
[2701/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\convert_scale.avx2.cpp.obj
[2702/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\merge.avx2.cpp.obj
[2703/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\color_rgb.avx2.cpp.obj
[2704/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\filter.sse4_1.cpp.obj
[2705/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\accum.avx2.cpp.obj
[2706/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\arithm.avx2.cpp.obj
[2707/3598] Building RC object modules\world\CMakeFiles\opencv_world.dir\vs_version.rc.res
[2708/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\sumpixels.avx2.cpp.obj
[2709/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\color_hsv.avx2.cpp.obj
[2710/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\box_filter.avx2.cpp.obj
[2711/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\__\features2d\src\fast.avx2.cpp.obj
[2712/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\color_yuv.avx2.cpp.obj
[2713/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\layers\layers_common.avx2.cpp.obj
[2714/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\filter.avx2.cpp.obj
[2715/3598] Building CXX object modules\world\tools\waldboost_detector\CMakeFiles\opencv_waldboost_detector.dir\waldboost_detector.cpp.obj
[2716/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_img_hash.dir\opencv_img_hash_main.cpp.obj
[2717/3598] Building RC object modules\img_hash\CMakeFiles\opencv_img_hash.dir\vs_version.rc.res
[2718/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_img_hash.dir\src\block_mean_hash.cpp.obj
[2719/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_img_hash.dir\src\average_hash.cpp.obj
[2720/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\int8layers\layers_common.avx2.cpp.obj
[2721/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\undistort.avx2.cpp.obj
[2722/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\morph.avx2.cpp.obj
[2723/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\sift.avx2.cpp.obj
[2724/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\sumpixels.avx512_skx.cpp.obj
[2725/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_img_hash.dir\src\phash.cpp.obj
[2726/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_img_hash.dir\src\img_hash_base.cpp.obj
[2727/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_img_hash.dir\src\color_moment_hash.cpp.obj
[2728/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_test_img_hash.dir\test\test_main.cpp.obj
[2729/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\smooth.avx2.cpp.obj
[2730/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_test_img_hash.dir\test\test_marr_hildreth_hash.cpp.obj
[2731/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\layers\layers_common.avx512_skx.cpp.obj
[2732/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_img_hash.dir\src\radial_variance_hash.cpp.obj
[2733/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\int8layers\layers_common.avx512_skx.cpp.obj
[2734/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\sift.avx512_skx.cpp.obj
[2735/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_img_hash.dir\src\marr_hildreth_hash.cpp.obj
[2736/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\matmul.avx512_skx.cpp.obj
[2737/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_test_img_hash.dir\test\test_average_hash.cpp.obj
[2738/3598] Building CXX object modules\img_hash\CMakeFiles\example_img_hash_hash_samples.dir\samples\hash_samples.cpp.obj
[2739/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_application_trace.dir\application_trace.cpp.obj
[2740/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_test_img_hash.dir\test\test_radial_variance_hash.cpp.obj
[2741/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_test_img_hash.dir\test\test_phash.cpp.obj
[2742/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_bgfg_segm.dir\bgfg_segm.cpp.obj
[2743/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_asift.dir\asift.cpp.obj
[2744/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_camshiftdemo.dir\camshiftdemo.cpp.obj
[2745/3598] Building CXX object modules\img_hash\CMakeFiles\opencv_test_img_hash.dir\test\test_block_mean_hash.cpp.obj
[2746/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\median_blur.avx2.cpp.obj
[2747/3598] Building CXX object modules\ts\CMakeFiles\opencv_ts.dir\src\cuda_test.cpp.obj
[2748/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_audio_spectrogram.dir\audio_spectrogram.cpp.obj
[2749/3598] Building CXX object modules\ts\CMakeFiles\opencv_ts.dir\src\ocl_test.cpp.obj
[2750/3598] Building CXX object modules\ts\CMakeFiles\opencv_ts.dir\src\ocl_perf.cpp.obj
[2751/3598] Building CXX object modules\ts\CMakeFiles\opencv_ts.dir\src\cuda_perf.cpp.obj
[2752/3598] Building CXX object apps\annotation\CMakeFiles\opencv_annotation.dir\opencv_annotation.cpp.obj
[2753/3598] Building CXX object modules\ts\CMakeFiles\opencv_ts.dir\src\ts_arrtest.cpp.obj
[2754/3598] Building CXX object apps\interactive-calibration\CMakeFiles\opencv_interactive-calibration.dir\calibController.cpp.obj
[2755/3598] Building CXX object apps\interactive-calibration\CMakeFiles\opencv_interactive-calibration.dir\rotationConverters.cpp.obj
[2756/3598] Building CXX object apps\interactive-calibration\CMakeFiles\opencv_interactive-calibration.dir\calibPipeline.cpp.obj
[2757/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\backends\fluid\gfluidimgproc_func.avx2.cpp.obj
[2758/3598] Building CXX object modules\ts\CMakeFiles\opencv_ts.dir\src\ts_tags.cpp.obj
[2759/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_calibration.dir\calibration.cpp.obj
[2760/3598] Building CXX object apps\interactive-calibration\CMakeFiles\opencv_interactive-calibration.dir\parametersController.cpp.obj
[2761/3598] Building CXX object apps\version\CMakeFiles\opencv_version_win32.dir\opencv_version.cpp.obj
[2762/3598] Building CXX object apps\version\CMakeFiles\opencv_version.dir\opencv_version.cpp.obj
[2763/3598] Building CXX object apps\model-diagnostics\CMakeFiles\opencv_model_diagnostics.dir\model_diagnostics.cpp.obj
[2764/3598] Building CXX object apps\interactive-calibration\CMakeFiles\opencv_interactive-calibration.dir\main.cpp.obj
[2765/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_cloning_demo.dir\cloning_demo.cpp.obj
[2766/3598] Building CXX object apps\interactive-calibration\CMakeFiles\opencv_interactive-calibration.dir\frameProcessor.cpp.obj
[2767/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_cloning_gui.dir\cloning_gui.cpp.obj
[2768/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_contours2.dir\contours2.cpp.obj
[2769/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_connected_components.dir\connected_components.cpp.obj
[2770/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_convexhull.dir\convexhull.cpp.obj
[2771/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_cout_mat.dir\cout_mat.cpp.obj
[2772/3598] Building CXX object modules\ts\CMakeFiles\opencv_ts.dir\src\ts.cpp.obj
[2773/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_create_mask.dir\create_mask.cpp.obj
[2774/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\bilateral_filter.avx2.cpp.obj
[2775/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_demhist.dir\demhist.cpp.obj
[2776/3598] Building CXX object apps\visualisation\CMakeFiles\opencv_visualisation.dir\opencv_visualisation.cpp.obj
[2777/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_dbt_face_detection.dir\dbt_face_detection.cpp.obj
[2778/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_delaunay2.dir\delaunay2.cpp.obj
[2779/3598] Building CXX object modules\ts\CMakeFiles\opencv_ts.dir\src\ts_func.cpp.obj
[2780/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_3calibration.dir\3calibration.cpp.obj
[2781/3598] Building CXX object modules\ts\CMakeFiles\opencv_ts.dir\src\ts_perf.cpp.obj
[2782/3598] Building CXX object modules\world\CMakeFiles\opencv_world.dir\backends\fluid\gfluidcore_func.avx2.cpp.obj
[2783/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_distrans.dir\distrans.cpp.obj
[2784/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_digits_lenet.dir\digits_lenet.cpp.obj
[2785/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_dft.dir\dft.cpp.obj
[2786/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_dis_opticalflow.dir\dis_opticalflow.cpp.obj
[2787/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_digits_svm.dir\digits_svm.cpp.obj
[2788/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_drawing.dir\drawing.cpp.obj
[2789/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_edge.dir\edge.cpp.obj
[2790/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_ela.dir\ela.cpp.obj
[2791/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_detect_mser.dir\detect_mser.cpp.obj
[2792/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_em.dir\em.cpp.obj
[2793/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_epipolar_lines.dir\epipolar_lines.cpp.obj
[2794/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_example.dir\example_cmake\example.cpp.obj
[2795/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_detect_blob.dir\detect_blob.cpp.obj
[2796/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_falsecolor.dir\falsecolor.cpp.obj
[2797/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_fback.dir\fback.cpp.obj
[2798/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_facial_features.dir\facial_features.cpp.obj
[2799/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_facedetect.dir\facedetect.cpp.obj
[2800/3598] Building CXX object modules\ts\CMakeFiles\opencv_ts.dir\src\ts_gtest.cpp.obj
[2801/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_ffilldemo.dir\ffilldemo.cpp.obj
[2802/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_filestorage.dir\filestorage.cpp.obj
[2803/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_inpaint.dir\inpaint.cpp.obj
[2804/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_grabcut.dir\grabcut.cpp.obj
[2805/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_fitellipse.dir\fitellipse.cpp.obj
[2806/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_imagelist_reader.dir\imagelist_reader.cpp.obj
[2807/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_imagelist_creator.dir\imagelist_creator.cpp.obj
[2808/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_intersectExample.dir\intersectExample.cpp.obj
[2809/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_image_alignment.dir\image_alignment.cpp.obj
[2810/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_kalman.dir\kalman.cpp.obj
[2811/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_intelligent_scissors.dir\intelligent_scissors.cpp.obj
[2812/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_lkdemo.dir\lkdemo.cpp.obj
[2813/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_laplace.dir\laplace.cpp.obj
[2814/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_kmeans.dir\kmeans.cpp.obj
[2815/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_logistic_regression.dir\logistic_regression.cpp.obj
[2816/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Pyramids.dir\tutorial_code\ImgProc\Pyramids\Pyramids.cpp.obj
[2817/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Morphology_2.dir\tutorial_code\ImgProc\Morphology_2.cpp.obj
[2818/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_lsd_lines.dir\lsd_lines.cpp.obj
[2819/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_essential_mat_reconstr.dir\essential_mat_reconstr.cpp.obj
[2820/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_letter_recog.dir\letter_recog.cpp.obj
[2821/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_mask_tmpl.dir\mask_tmpl.cpp.obj
[2822/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_minarea.dir\minarea.cpp.obj
[2823/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_neural_network.dir\neural_network.cpp.obj
[2824/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_opencv_version.dir\opencv_version.cpp.obj
[2825/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_npr_demo.dir\npr_demo.cpp.obj
[2826/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_pca.dir\pca.cpp.obj
[2827/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_morphology2.dir\morphology2.cpp.obj
[2828/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_segment_objects.dir\segment_objects.cpp.obj
[2829/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_phase_corr.dir\phase_corr.cpp.obj
[2830/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_flann_search_dataset.dir\flann_search_dataset.cpp.obj
[2831/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_simd_basic.dir\simd_basic.cpp.obj
[2832/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_polar_transforms.dir\polar_transforms.cpp.obj
[2833/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_peopledetect.dir\peopledetect.cpp.obj
[2834/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_squares.dir\squares.cpp.obj
[2835/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_matchmethod_orb_akaze_brisk.dir\matchmethod_orb_akaze_brisk.cpp.obj
[2836/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_points_classifier.dir\points_classifier.cpp.obj
[2837/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_smiledetect.dir\smiledetect.cpp.obj
[2838/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_train_svmsgd.dir\train_svmsgd.cpp.obj
[2839/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_travelsalesman.dir\travelsalesman.cpp.obj
[2840/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_qrcode.dir\qrcode.cpp.obj
[2841/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_text_skewness_correction.dir\text_skewness_correction.cpp.obj
[2842/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_AddingImagesTrackbar.dir\tutorial_code\HighGUI\AddingImagesTrackbar.cpp.obj
[2843/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_stitching.dir\stitching.cpp.obj
[2844/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_tree_engine.dir\tree_engine.cpp.obj
[2845/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_MatchTemplate_Demo.dir\tutorial_code\Histograms_Matching\MatchTemplate_Demo.cpp.obj
[2846/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_stereo_match.dir\stereo_match.cpp.obj
[2847/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_calcBackProject_Demo2.dir\tutorial_code\Histograms_Matching\calcBackProject_Demo2.cpp.obj
[2848/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_BasicLinearTransformsTrackbar.dir\tutorial_code\HighGUI\BasicLinearTransformsTrackbar.cpp.obj
[2849/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_stereo_calib.dir\stereo_calib.cpp.obj
[2850/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_EqualizeHist_Demo.dir\tutorial_code\Histograms_Matching\EqualizeHist_Demo.cpp.obj
[2851/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_select3dobj.dir\select3dobj.cpp.obj
[2852/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_BasicLinearTransforms.dir\tutorial_code\ImgProc\BasicLinearTransforms.cpp.obj
[2853/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_train_HOG.dir\train_HOG.cpp.obj
[2854/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_compareHist_Demo.dir\tutorial_code\Histograms_Matching\compareHist_Demo.cpp.obj
[2855/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_calcBackProject_Demo1.dir\tutorial_code\Histograms_Matching\calcBackProject_Demo1.cpp.obj
[2856/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Threshold.dir\tutorial_code\ImgProc\Threshold.cpp.obj
[2857/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_calcHist_Demo.dir\tutorial_code\Histograms_Matching\calcHist_Demo.cpp.obj
[2858/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Morphology_1.dir\tutorial_code\ImgProc\Morphology_1.cpp.obj
[2859/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_HitMiss.dir\tutorial_code\ImgProc\HitMiss\HitMiss.cpp.obj
[2860/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Smoothing.dir\tutorial_code\ImgProc\Smoothing\Smoothing.cpp.obj
[2861/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Threshold_inRange.dir\tutorial_code\ImgProc\Threshold_inRange.cpp.obj
[2862/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Drawing_1.dir\tutorial_code\ImgProc\basic_drawing\Drawing_1.cpp.obj
[2863/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_anisotropic_image_segmentation.dir\tutorial_code\ImgProc\anisotropic_image_segmentation\anisotropic_image_segmentation.cpp.obj
[2864/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_changing_contrast_brightness_image.dir\tutorial_code\ImgProc\changing_contrast_brightness_image\changing_contrast_brightness_image.cpp.obj
[2865/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Drawing_2.dir\tutorial_code\ImgProc\basic_drawing\Drawing_2.cpp.obj
[2866/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Morphology_3.dir\tutorial_code\ImgProc\morph_lines_detection\Morphology_3.cpp.obj
[2867/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_out_of_focus_deblur_filter.dir\tutorial_code\ImgProc\out_of_focus_deblur_filter\out_of_focus_deblur_filter.cpp.obj
[2868/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_CannyDetector_Demo.dir\tutorial_code\ImgTrans\CannyDetector_Demo.cpp.obj
[2869/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Laplace_Demo.dir\tutorial_code\ImgTrans\Laplace_Demo.cpp.obj
[2870/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_periodic_noise_removing_filter.dir\tutorial_code\ImgProc\periodic_noise_removing_filter\periodic_noise_removing_filter.cpp.obj
[2871/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_HoughLines_Demo.dir\tutorial_code\ImgTrans\HoughLines_Demo.cpp.obj
[2872/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_HoughCircle_Demo.dir\tutorial_code\ImgTrans\HoughCircle_Demo.cpp.obj
[2873/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Sobel_Demo.dir\tutorial_code\ImgTrans\Sobel_Demo.cpp.obj
[2874/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_motion_deblur_filter.dir\tutorial_code\ImgProc\motion_deblur_filter\motion_deblur_filter.cpp.obj
[2875/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Remap_Demo.dir\tutorial_code\ImgTrans\Remap_Demo.cpp.obj
[2876/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_Geometric_Transforms_Demo.dir\tutorial_code\ImgTrans\Geometric_Transforms_Demo.cpp.obj
[2877/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_copyMakeBorder_demo.dir\tutorial_code\ImgTrans\copyMakeBorder_demo.cpp.obj
[2878/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_houghcircles.dir\tutorial_code\ImgTrans\houghcircles.cpp.obj
[2879/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_houghlines.dir\tutorial_code\ImgTrans\houghlines.cpp.obj
[2880/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_filter2D_demo.dir\tutorial_code\ImgTrans\filter2D_demo.cpp.obj
[2881/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_imageSegmentation.dir\tutorial_code\ImgTrans\imageSegmentation.cpp.obj
[2882/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_findContours_demo.dir\tutorial_code\ShapeDescriptors\findContours_demo.cpp.obj
[2883/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_generalContours_demo1.dir\tutorial_code\ShapeDescriptors\generalContours_demo1.cpp.obj
[2884/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_hull_demo.dir\tutorial_code\ShapeDescriptors\hull_demo.cpp.obj
[2885/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_generalContours_demo2.dir\tutorial_code\ShapeDescriptors\generalContours_demo2.cpp.obj
[2886/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pointPolygonTest_demo.dir\tutorial_code\ShapeDescriptors\pointPolygonTest_demo.cpp.obj
[2887/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_moments_demo.dir\tutorial_code\ShapeDescriptors\moments_demo.cpp.obj
[2888/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_compatibility_test.dir\tutorial_code\compatibility\compatibility_test.cpp.obj
[2889/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_AddingImages.dir\tutorial_code\core\AddingImages\AddingImages.cpp.obj
[2890/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_cornerDetector_Demo.dir\tutorial_code\TrackingMotion\cornerDetector_Demo.cpp.obj
[2891/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_cornerHarris_Demo.dir\tutorial_code\TrackingMotion\cornerHarris_Demo.cpp.obj
[2892/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_goodFeaturesToTrack_Demo.dir\tutorial_code\TrackingMotion\goodFeaturesToTrack_Demo.cpp.obj
[2893/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_cornerSubPix_Demo.dir\tutorial_code\TrackingMotion\cornerSubPix_Demo.cpp.obj
[2894/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_discrete_fourier_transform.dir\tutorial_code\core\discrete_fourier_transform\discrete_fourier_transform.cpp.obj
[2895/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_file_input_output.dir\tutorial_code\core\file_input_output\file_input_output.cpp.obj
[2896/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_how_to_scan_images.dir\tutorial_code\core\how_to_scan_images\how_to_scan_images.cpp.obj
[2897/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_how_to_use_OpenCV_parallel_for_new.dir\tutorial_code\core\how_to_use_OpenCV_parallel_for_\how_to_use_OpenCV_parallel_for_new.cpp.obj
[2898/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_how_to_use_OpenCV_parallel_for_.dir\tutorial_code\core\how_to_use_OpenCV_parallel_for_\how_to_use_OpenCV_parallel_for_.cpp.obj
[2899/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_mat_mask_operations.dir\tutorial_code\core\mat_mask_operations\mat_mask_operations.cpp.obj
[2900/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_mat_operations.dir\tutorial_code\core\mat_operations\mat_operations.cpp.obj
[2901/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_mat_the_basic_image_container.dir\tutorial_code\core\mat_the_basic_image_container\mat_the_basic_image_container.cpp.obj
[2902/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_camera_calibration.dir\tutorial_code\calib3d\camera_calibration\camera_calibration.cpp.obj
[2903/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_univ_intrin.dir\tutorial_code\core\univ_intrin\univ_intrin.cpp.obj
[2904/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_SURF_detection_Demo.dir\tutorial_code\features2D\feature_detection\SURF_detection_Demo.cpp.obj
[2905/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_panorama_stitching_rotating_camera.dir\tutorial_code\features2D\Homography\panorama_stitching_rotating_camera.cpp.obj
[2906/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_AKAZE_match.dir\tutorial_code\features2D\AKAZE_match.cpp.obj
[2907/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pose_from_homography.dir\tutorial_code\features2D\Homography\pose_from_homography.cpp.obj
[2908/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_SURF_FLANN_matching_Demo.dir\tutorial_code\features2D\feature_flann_matcher\SURF_FLANN_matching_Demo.cpp.obj
[2909/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_SURF_matching_Demo.dir\tutorial_code\features2D\feature_description\SURF_matching_Demo.cpp.obj
[2910/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_perspective_correction.dir\tutorial_code\features2D\Homography\perspective_correction.cpp.obj
[2911/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_planar_tracking.dir\tutorial_code\features2D\AKAZE_tracking\planar_tracking.cpp.obj
[2912/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_homography_from_camera_displacement.dir\tutorial_code\features2D\Homography\homography_from_camera_displacement.cpp.obj
[2913/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_SURF_FLANN_matching_homography_Demo.dir\tutorial_code\features2D\feature_homography\SURF_FLANN_matching_homography_Demo.cpp.obj
[2914/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_decompose_homography.dir\tutorial_code\features2D\Homography\decompose_homography.cpp.obj
[2915/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_documentation.dir\tutorial_code\introduction\documentation\documentation.cpp.obj
[2916/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_stitching_detailed.dir\stitching_detailed.cpp.obj
[2917/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_dynamic_graph_snippets.dir\tutorial_code\gapi\doc_snippets\dynamic_graph_snippets.cpp.obj
[2918/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_kernel_api_snippets.dir\tutorial_code\gapi\doc_snippets\kernel_api_snippets.cpp.obj
[2919/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_gpu-basics-similarity.dir\tutorial_code\gpu\gpu-basics-similarity\gpu-basics-similarity.cpp.obj
[2920/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_gdal-image.dir\tutorial_code\imgcodecs\GDAL_IO\gdal-image.cpp.obj
[2921/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_introduction_windows_vs.dir\tutorial_code\introduction\windows_visual_studio_opencv\introduction_windows_vs.cpp.obj
[2922/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_display_image.dir\tutorial_code\introduction\display_image\display_image.cpp.obj
[2923/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_introduction_to_svm.dir\tutorial_code\ml\introduction_to_svm\introduction_to_svm.cpp.obj
[2924/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_non_linear_svms.dir\tutorial_code\ml\non_linear_svms\non_linear_svms.cpp.obj
[2925/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_introduction_to_pca.dir\tutorial_code\ml\introduction_to_pca\introduction_to_pca.cpp.obj
[2926/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_decolor.dir\tutorial_code\photo\decolorization\decolor.cpp.obj
[2927/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_objectDetection.dir\tutorial_code\objectDetection\objectDetection.cpp.obj
[2928/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_api_ref_snippets.dir\tutorial_code\gapi\doc_snippets\api_ref_snippets.cpp.obj
[2929/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_core_mat_checkVector.dir\tutorial_code\snippets\core_mat_checkVector.cpp.obj
[2930/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_porting_anisotropic_image_segmentation_gapi_fluid.dir\tutorial_code\gapi\porting_anisotropic_image_segmentation\porting_anisotropic_image_segmentation_gapi_fluid.cpp.obj
[2931/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_hdr_imaging.dir\tutorial_code\photo\hdr_imaging\hdr_imaging.cpp.obj
[2932/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_cloning_gui.dir\tutorial_code\photo\seamless_cloning\cloning_gui.cpp.obj
[2933/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_core_split.dir\tutorial_code\snippets\core_split.cpp.obj
[2934/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_npr_demo.dir\tutorial_code\photo\non_photorealistic_rendering\npr_demo.cpp.obj
[2935/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_porting_anisotropic_image_segmentation_gapi.dir\tutorial_code\gapi\porting_anisotropic_image_segmentation\porting_anisotropic_image_segmentation_gapi.cpp.obj
[2936/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_cloning_demo.dir\tutorial_code\photo\seamless_cloning\cloning_demo.cpp.obj
[2937/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_core_reduce.dir\tutorial_code\snippets\core_reduce.cpp.obj
[2938/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_core_various.dir\tutorial_code\snippets\core_various.cpp.obj
[2939/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_imgproc_HoughLinesPointSet.dir\tutorial_code\snippets\imgproc_HoughLinesPointSet.cpp.obj
[2940/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_core_merge.dir\tutorial_code\snippets\core_merge.cpp.obj
[2941/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_imgproc_HoughLinesP.dir\tutorial_code\snippets\imgproc_HoughLinesP.cpp.obj
[2942/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_human_parsing.dir\human_parsing.cpp.obj
[2943/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_age_gender_emotion_recognition.dir\tutorial_code\gapi\age_gender_emotion_recognition\age_gender_emotion_recognition.cpp.obj
[2944/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_imgcodecs_imwrite.dir\tutorial_code\snippets\imgcodecs_imwrite.cpp.obj
[2945/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_imgproc_HoughLinesCircles.dir\tutorial_code\snippets\imgproc_HoughLinesCircles.cpp.obj
[2946/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_imgproc_applyColorMap.dir\tutorial_code\snippets\imgproc_applyColorMap.cpp.obj
[2947/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_imgproc_calcHist.dir\tutorial_code\snippets\imgproc_calcHist.cpp.obj
[2948/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_imgproc_segmentation.dir\tutorial_code\snippets\imgproc_segmentation.cpp.obj
[2949/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_face_detect.dir\face_detect.cpp.obj
[2950/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_meanshift.dir\tutorial_code\video\meanshift\meanshift.cpp.obj
[2951/3598] Building CXX object samples\cpp\CMakeFiles\example_snippet_imgproc_drawContours.dir\tutorial_code\snippets\imgproc_drawContours.cpp.obj
[2952/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_camshift.dir\tutorial_code\video\meanshift\camshift.cpp.obj
[2953/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_dasiamrpn_tracker.dir\dasiamrpn_tracker.cpp.obj
[2954/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_bg_sub.dir\tutorial_code\video\bg_sub.cpp.obj
[2955/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_video-input-psnr-ssim.dir\tutorial_code\videoio\video-input-psnr-ssim\video-input-psnr-ssim.cpp.obj
[2956/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_optical_flow_dense.dir\tutorial_code\video\optical_flow\optical_flow_dense.cpp.obj
[2957/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_optical_flow.dir\tutorial_code\video\optical_flow\optical_flow.cpp.obj
[2958/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_orbbec_astra.dir\tutorial_code\videoio\orbbec_astra\orbbec_astra.cpp.obj
[2959/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videocapture_basic.dir\videocapture_basic.cpp.obj
[2960/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_security_barrier_camera.dir\tutorial_code\gapi\security_barrier_camera\security_barrier_camera.cpp.obj
[2961/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videocapture_audio.dir\videocapture_audio.cpp.obj
[2962/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_video-write.dir\tutorial_code\videoio\video-write\video-write.cpp.obj
[2963/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_LATCH_match.dir\tutorial_code\xfeatures2D\LATCH_match.cpp.obj
[2964/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videocapture_image_sequence.dir\videocapture_image_sequence.cpp.obj
[2965/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videocapture_audio_combination.dir\videocapture_audio_combination.cpp.obj
[2966/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videocapture_camera.dir\videocapture_camera.cpp.obj
[2967/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videocapture_gphoto2_autofocus.dir\videocapture_gphoto2_autofocus.cpp.obj
[2968/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videocapture_realsense.dir\videocapture_realsense.cpp.obj
[2969/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videocapture_microphone.dir\videocapture_microphone.cpp.obj
[2970/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_face_beautification.dir\tutorial_code\gapi\face_beautification\face_beautification.cpp.obj
[2971/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videocapture_openni.dir\videocapture_openni.cpp.obj
[2972/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videowriter_basic.dir\videowriter_basic.cpp.obj
[2973/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videocapture_starter.dir\videocapture_starter.cpp.obj
[2974/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_registration.dir\tutorial_code\calib3d\real_time_pose_estimation\src\Mesh.cpp.obj
[2975/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_registration.dir\tutorial_code\calib3d\real_time_pose_estimation\src\CsvReader.cpp.obj
[2976/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_registration.dir\tutorial_code\calib3d\real_time_pose_estimation\src\CsvWriter.cpp.obj
[2977/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_warpPerspective_demo.dir\warpPerspective_demo.cpp.obj
[2978/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_registration.dir\tutorial_code\calib3d\real_time_pose_estimation\src\ModelRegistration.cpp.obj
[2979/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_watershed.dir\watershed.cpp.obj
[2980/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_registration.dir\tutorial_code\calib3d\real_time_pose_estimation\src\Model.cpp.obj
[2981/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_registration.dir\tutorial_code\calib3d\real_time_pose_estimation\src\PnPProblem.cpp.obj
[2982/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_registration.dir\tutorial_code\calib3d\real_time_pose_estimation\src\RobustMatcher.cpp.obj
[2983/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_detection.dir\tutorial_code\calib3d\real_time_pose_estimation\src\ModelRegistration.cpp.obj
[2984/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_detection.dir\tutorial_code\calib3d\real_time_pose_estimation\src\Mesh.cpp.obj
[2985/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_detection.dir\tutorial_code\calib3d\real_time_pose_estimation\src\CsvReader.cpp.obj
[2986/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_detection.dir\tutorial_code\calib3d\real_time_pose_estimation\src\PnPProblem.cpp.obj
[2987/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_detection.dir\tutorial_code\calib3d\real_time_pose_estimation\src\CsvWriter.cpp.obj
[2988/3598] Building CXX object samples\cpp\CMakeFiles\example_cpp_videocapture_gstreamer_pipeline.dir\videocapture_gstreamer_pipeline.cpp.obj
[2989/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_detection.dir\tutorial_code\calib3d\real_time_pose_estimation\src\RobustMatcher.cpp.obj
[2990/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_detection.dir\tutorial_code\calib3d\real_time_pose_estimation\src\Model.cpp.obj
[2991/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_registration.dir\tutorial_code\calib3d\real_time_pose_estimation\src\Utils.cpp.obj
[2992/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_registration.dir\tutorial_code\calib3d\real_time_pose_estimation\src\main_registration.cpp.obj
[2993/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_colorization.dir\colorization.cpp.obj
[2994/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_openpose.dir\openpose.cpp.obj
[2995/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_detection.dir\tutorial_code\calib3d\real_time_pose_estimation\src\main_detection.cpp.obj
[2996/3598] Building CXX object samples\cpp\CMakeFiles\example_tutorial_pnp_detection.dir\tutorial_code\calib3d\real_time_pose_estimation\src\Utils.cpp.obj
[2997/3598] Building CXX object samples\opencl\CMakeFiles\example_opencl_opencl-opencv-interop.dir\opencl-opencv-interop.cpp.obj
[2998/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_person_reid.dir\person_reid.cpp.obj
[2999/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_alpha_comp.dir\alpha_comp.cpp.obj
[3000/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_classification.dir\classification.cpp.obj
[3001/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_object_detection.dir\object_detection.cpp.obj
[3002/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_morphology.dir\morphology.cpp.obj
[3003/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_houghlines.dir\houghlines.cpp.obj
[3004/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_scene_text_recognition.dir\scene_text_recognition.cpp.obj
[3005/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_farneback_optical_flow.dir\farneback_optical_flow.cpp.obj
[3006/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_scene_text_detection.dir\scene_text_detection.cpp.obj
[3007/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_multi.dir\multi.cpp.obj
[3008/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_bgfg_segm.dir\bgfg_segm.cpp.obj
[3009/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_generalized_hough.dir\generalized_hough.cpp.obj
[3010/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_cascadeclassifier.dir\cascadeclassifier.cpp.obj
[3011/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_text_detection.dir\text_detection.cpp.obj
[3012/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_speech_recognition.dir\speech_recognition.cpp.obj
[3013/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_scene_text_spotting.dir\scene_text_spotting.cpp.obj
[3014/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_hog.dir\hog.cpp.obj
[3015/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_stereo_match.dir\stereo_match.cpp.obj
[3016/3598] Building CXX object samples\dnn\CMakeFiles\example_dnn_segmentation.dir\segmentation.cpp.obj
[3017/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_pyrlk_optical_flow.dir\pyrlk_optical_flow.cpp.obj
[3018/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_surf_keypoint_matcher.dir\surf_keypoint_matcher.cpp.obj
[3019/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_super_resolution.dir\super_resolution.cpp.obj
[3020/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_video_reader.dir\video_reader.cpp.obj
[3021/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_video_writer.dir\video_writer.cpp.obj
[3022/3598] Building CXX object samples\tapi\CMakeFiles\example_tapi_opencl_custom_kernel.dir\opencl_custom_kernel.cpp.obj
[3023/3598] Building CXX object samples\tapi\CMakeFiles\example_tapi_bgfg_segm.dir\bgfg_segm.cpp.obj
[3024/3598] Building CXX object samples\tapi\CMakeFiles\example_tapi_clahe.dir\clahe.cpp.obj
[3025/3598] Building CXX object samples\tapi\CMakeFiles\example_tapi_dense_optical_flow.dir\dense_optical_flow.cpp.obj
[3026/3598] Building CXX object samples\gpu\CMakeFiles\example_gpu_stereo_multi.dir\stereo_multi.cpp.obj
[3027/3598] Building CXX object samples\tapi\CMakeFiles\example_tapi_hog.dir\hog.cpp.obj
[3028/3598] Building CXX object samples\tapi\CMakeFiles\example_tapi_squares.dir\squares.cpp.obj
[3029/3598] Building CXX object samples\tapi\CMakeFiles\example_tapi_video_acceleration.dir\video_acceleration.cpp.obj
[3030/3598] Building CXX object samples\tapi\CMakeFiles\example_tapi_ufacedetect.dir\ufacedetect.cpp.obj
[3031/3598] Building CXX object samples\tapi\CMakeFiles\example_tapi_pyrlk_optical_flow.dir\pyrlk_optical_flow.cpp.obj
[3032/3598] Building CXX object samples\tapi\CMakeFiles\example_tapi_camshift.dir\camshift.cpp.obj
[3033/3598] Building CXX object samples\directx\CMakeFiles\example_directx_d3d11_interop.dir\d3d11_interop.cpp.obj
[3034/3598] Building CXX object samples\directx\CMakeFiles\example_directx_d3d10_interop.dir\d3d10_interop.cpp.obj
[3035/3598] Building CXX object samples\directx\CMakeFiles\example_directx_d3d9ex_interop.dir\d3d9ex_interop.cpp.obj
[3036/3598] Building CXX object samples\opengl\CMakeFiles\example_opengl_opengl.dir\opengl.cpp.obj
[3037/3598] Building CXX object samples\directx\CMakeFiles\example_directx_d3d9_interop.dir\d3d9_interop.cpp.obj
[3038/3598] Linking CXX shared library bin\opencv_world460.dll
[3039/3598] Linking CXX executable bin\example_phase_unwrapping_unwrap.exe
[3040/3598] Linking CXX executable bin\example_intensity_transform_intensity_transform.exe
[3041/3598] Linking CXX executable bin\example_plot_plot_demo.exe
[3042/3598] Linking CXX executable bin\example_quality_brisque_eval_tid2008.exe
[3043/3598] Linking CXX executable bin\example_reg_map_test.exe
[3044/3598] Linking CXX executable bin\example_quality_brisque_trainer_livedb.exe
[3045/3598] Linking CXX executable bin\example_surface_matching_ppf_load_match.exe
[3046/3598] Linking CXX executable bin\example_dnn_superres_dnn_superres.exe
[3047/3598] Linking CXX executable bin\example_surface_matching_ppf_normal_computation.exe
[3048/3598] Linking CXX executable bin\example_dnn_superres_dnn_superres_benchmark_quality.exe
[3049/3598] Linking CXX executable bin\example_cudaimgproc_connected_components.exe
[3050/3598] Linking CXX executable bin\example_dnn_superres_dnn_superres_multioutput.exe
[3051/3598] Linking CXX executable bin\example_dnn_superres_dnn_superres_video.exe
[3052/3598] Linking CXX executable bin\example_dnn_superres_dnn_superres_benchmark_time.exe
[3053/3598] Linking CXX executable bin\example_line_descriptor_knn_matching.exe
[3054/3598] Linking CXX executable bin\example_hfs_example.exe
[3055/3598] Linking CXX executable bin\example_line_descriptor_compute_descriptors.exe
[3056/3598] Linking CXX executable bin\example_line_descriptor_lsd_lines_extraction.exe
[3057/3598] Linking CXX executable bin\example_line_descriptor_radius_matching.exe
[3058/3598] Linking CXX executable bin\example_fuzzy_fuzzy_filtering.exe
[3059/3598] Linking CXX executable bin\example_line_descriptor_lines_extraction.exe
[3060/3598] Linking CXX executable bin\example_fuzzy_fuzzy_inpainting.exe
[3061/3598] Linking CXX executable bin\example_line_descriptor_matching.exe
[3062/3598] Linking CXX executable bin\example_text_character_recognition.exe
[3063/3598] Linking CXX executable bin\example_saliency_computeSaliency.exe
[3064/3598] Linking CXX executable bin\example_text_segmented_word_recognition.exe
[3065/3598] Linking CXX executable bin\example_text_end_to_end_recognition.exe
[3066/3598] Linking CXX executable bin\example_text_dictnet_demo.exe
[3067/3598] Linking CXX executable bin\example_text_text_recognition_cnn.exe
[3068/3598] Linking CXX executable bin\example_text_cropped_word_recognition.exe
[3069/3598] Linking CXX executable bin\example_text_textdetection.exe
[3070/3598] Linking CXX executable bin\example_text_textbox_demo.exe
[3071/3598] Linking CXX executable bin\example_text_webcam_demo.exe
[3072/3598] Linking CXX executable bin\example_wechat_qrcode_qrcode_example.exe
[3073/3598] Linking CXX executable bin\example_xphoto_bm3d_image_denoising.exe
[3074/3598] Linking CXX executable bin\example_text_textdetection_swt.exe
[3075/3598] Linking CXX executable bin\example_barcode_barcode.exe
[3076/3598] Linking CXX executable bin\example_datasets_ar_hmdb_benchmark.exe
[3077/3598] Linking CXX executable bin\example_xphoto_dct_image_denoising.exe
[3078/3598] Linking CXX executable bin\example_xphoto_inpainting.exe
[3079/3598] Linking CXX executable bin\example_xphoto_color_balance.exe
[3080/3598] Linking CXX executable bin\example_datasets_ar_sports.exe
[3081/3598] Linking CXX executable bin\example_xphoto_oil.exe
[3082/3598] Linking CXX executable bin\example_datasets_ar_hmdb.exe
[3083/3598] Linking CXX executable bin\example_datasets_fr_adience.exe
[3084/3598] Linking CXX executable bin\example_datasets_fr_lfw_benchmark.exe
[3085/3598] Linking CXX executable bin\example_datasets_fr_lfw.exe
[3086/3598] Linking CXX executable bin\example_datasets_gr_skig.exe
[3087/3598] Linking CXX executable bin\example_datasets_hpe_parse.exe
[3088/3598] Linking CXX executable bin\example_datasets_hpe_humaneva.exe
[3089/3598] Linking CXX executable bin\example_datasets_gr_chalearn.exe
[3090/3598] Linking CXX executable bin\example_datasets_is_weizmann.exe
[3091/3598] Linking CXX executable bin\example_datasets_msm_epfl.exe
[3092/3598] Linking CXX executable bin\example_datasets_is_bsds.exe
[3093/3598] Linking CXX executable bin\example_datasets_or_pascal.exe
[3094/3598] Linking CXX executable bin\example_datasets_ir_robot.exe
[3095/3598] Linking CXX executable bin\example_datasets_msm_middlebury.exe
[3096/3598] Linking CXX executable bin\example_datasets_ir_affine.exe
[3097/3598] Linking CXX executable bin\example_datasets_or_sun.exe
[3098/3598] Linking CXX executable bin\example_datasets_slam_tumindoor.exe
[3099/3598] Linking CXX executable bin\example_datasets_sr_div2k.exe
[3100/3598] Linking CXX executable bin\example_datasets_or_imagenet.exe
[3101/3598] Linking CXX executable bin\example_datasets_pd_caltech.exe
[3102/3598] Linking CXX executable bin\example_datasets_slam_kitti.exe
[3103/3598] Linking CXX executable bin\example_datasets_pd_inria.exe
[3104/3598] Linking CXX executable bin\example_datasets_or_mnist.exe
[3105/3598] Linking CXX executable bin\example_datasets_sr_bsds.exe
[3106/3598] Linking CXX executable bin\example_datasets_tr_chars.exe
[3107/3598] Linking CXX executable bin\example_datasets_sr_general100.exe
[3108/3598] Linking CXX executable bin\example_datasets_tr_chars_benchmark.exe
[3109/3598] Linking CXX executable bin\example_datasets_tr_icdar.exe
[3110/3598] Linking CXX executable bin\example_datasets_tr_svt.exe
[3111/3598] Linking CXX executable bin\example_datasets_tr_icdar_benchmark.exe
[3112/3598] Linking CXX executable bin\example_datasets_track_vot.exe
[3113/3598] Linking CXX executable bin\example_datasets_tr_svt_benchmark.exe
[3114/3598] Linking CXX executable bin\example_mcc_chart_detection_with_network.exe
[3115/3598] Linking CXX executable bin\example_mcc_chart_detection.exe
[3116/3598] Linking CXX executable bin\example_rgbd_colored_kinfu_demo.exe
[3117/3598] Linking CXX executable bin\example_rgbd_dynafu_demo.exe
[3118/3598] Linking CXX executable bin\example_mcc_color_correction_model.exe
[3119/3598] Linking CXX executable bin\example_rgbd_odometry_evaluation.exe
[3120/3598] Linking CXX executable bin\example_structured_light_capsinpattern.exe
[3121/3598] Linking CXX executable bin\example_rgbd_large_kinfu_demo.exe
[3122/3598] Linking CXX executable bin\example_rgbd_kinfu_demo.exe
[3123/3598] Linking CXX executable bin\example_shape_shape_example.exe
[3124/3598] Linking CXX executable bin\example_structured_light_projectorcalibration.exe
[3125/3598] Linking CXX executable bin\example_rgbd_linemod.exe
[3126/3598] Linking CXX executable bin\example_xfeatures2d_pct_signatures.exe
[3127/3598] Linking CXX executable bin\example_structured_light_pointcloud.exe
[3128/3598] Linking CXX executable bin\example_structured_light_cap_pattern.exe
[3129/3598] Linking CXX executable bin\example_ximgproc_edgeboxes_demo.exe
[3130/3598] Linking CXX executable bin\example_ximgproc_deriche_demo.exe
[3131/3598] Linking CXX executable bin\example_xfeatures2d_gms_matcher.exe
[3132/3598] Linking CXX executable bin\example_xfeatures2d_surf_matcher.exe
[3133/3598] Linking CXX executable bin\example_ximgproc_brightedgesexample.exe
[3134/3598] Linking CXX executable bin\example_ximgproc_colorize.exe
[3135/3598] Linking CXX executable bin\example_ximgproc_color_match_template.exe
[3136/3598] Linking CXX executable bin\example_xfeatures2d_bagofwords_classification.exe
[3137/3598] Linking CXX executable bin\example_xfeatures2d_video_homography.exe
[3138/3598] Linking CXX executable bin\example_xfeatures2d_pct_webcam.exe
[3139/3598] Linking CXX executable bin\example_xfeatures2d_shape_transformation.exe
[3140/3598] Linking CXX executable bin\example_ximgproc_disparity_filtering.exe
[3141/3598] Linking CXX executable bin\example_ximgproc_fast_hough_transform.exe
[3142/3598] Linking CXX executable bin\example_ximgproc_edgepreserving_filter_demo.exe
[3143/3598] Linking CXX executable bin\example_ximgproc_filterdemo.exe
[3144/3598] Linking CXX executable bin\example_ximgproc_fld_lines.exe
[3145/3598] Linking CXX executable bin\example_ximgproc_graphsegmentation_demo.exe
[3146/3598] Linking CXX executable bin\example_ximgproc_live_demo.exe
[3147/3598] Linking CXX executable bin\example_ximgproc_fourier_descriptors_demo.exe
[3148/3598] Linking CXX executable bin\example_ximgproc_radon_transform_demo.exe
[3149/3598] Linking CXX executable bin\example_ximgproc_paillou_demo.exe
[3150/3598] Linking CXX executable bin\example_ximgproc_thinning.exe
[3151/3598] Linking CXX executable bin\example_ximgproc_selectivesearchsegmentation_demo.exe
[3152/3598] Linking CXX executable bin\example_ximgproc_niblack_thresholding.exe
[3153/3598] Linking CXX executable bin\example_ximgproc_run_length_morphology_demo.exe
[3154/3598] Linking CXX executable bin\example_ximgproc_peilin.exe
[3155/3598] Linking CXX executable bin\example_aruco_aruco_dict_utils.exe
[3156/3598] Linking CXX executable bin\example_ximgproc_structured_edge_detection.exe
[3157/3598] Linking CXX executable bin\example_ximgproc_seeds.exe
[3158/3598] Linking CXX executable bin\example_aruco_create_marker.exe
[3159/3598] Linking CXX executable bin\example_ximgproc_slic.exe
[3160/3598] Linking CXX executable bin\example_aruco_create_board_charuco.exe
[3161/3598] Linking CXX executable bin\example_aruco_create_diamond.exe
[3162/3598] Linking CXX executable bin\example_aruco_calibrate_camera.exe
[3163/3598] Linking CXX executable bin\example_aruco_create_board.exe
[3164/3598] Linking CXX executable bin\example_aruco_calibrate_camera_charuco.exe
[3165/3598] Linking CXX executable bin\example_aruco_detect_diamonds.exe
[3166/3598] Linking CXX executable bin\example_aruco_detect_board_charuco.exe
[3167/3598] Linking CXX executable bin\example_aruco_tutorial_charuco_create_detect.exe
[3168/3598] Linking CXX executable bin\example_aruco_detect_board.exe
[3169/3598] Linking CXX executable bin\example_aruco_detect_markers.exe
[3170/3598] Linking CXX executable bin\example_bioinspired_OpenEXRimages_HDR_Retina_toneMapping.exe
[3171/3598] Linking CXX executable bin\example_ccalib_multi_cameras_calibration.exe
[3172/3598] Linking CXX executable bin\example_ccalib_random_pattern_calibration.exe
[3173/3598] Linking CXX executable bin\example_ccalib_omni_stereo_calibration.exe
[3174/3598] Linking CXX executable bin\example_ccalib_random_pattern_generator.exe
[3175/3598] Linking CXX executable bin\example_bioinspired_retinaDemo.exe
[3176/3598] Linking CXX executable bin\example_bgsegm_bgfg.exe
[3177/3598] Linking CXX executable bin\example_dnn_objdetect_image_classification.exe
[3178/3598] Linking CXX executable bin\example_dpm_cascade_detect_camera.exe
[3179/3598] Linking CXX executable bin\example_ccalib_omni_calibration.exe
[3180/3598] Linking CXX executable bin\example_dnn_objdetect_obj_detect.exe
[3181/3598] Linking CXX executable bin\example_face_facemark_demo_lbf.exe
[3182/3598] Linking CXX executable bin\example_dpm_cascade_detect_sequence.exe
[3183/3598] Linking CXX executable bin\example_face_facemark_lbf_fitting.exe
[3184/3598] Linking CXX executable bin\example_face_facemark_demo_aam.exe
[3185/3598] Linking CXX executable bin\example_face_mace_webcam.exe
[3186/3598] Linking CXX executable bin\example_face_facerec_demo.exe
[3187/3598] Linking CXX executable bin\example_face_facerec_lbph.exe
[3188/3598] Linking CXX executable bin\example_face_facerec_eigenfaces.exe
[3189/3598] Linking CXX executable bin\example_face_facerec_fisherfaces.exe
[3190/3598] Linking CXX executable bin\example_face_facerec_video.exe
[3191/3598] Linking CXX executable bin\example_face_facerec_save_load.exe
[3192/3598] Linking CXX executable bin\example_face_sampleDetectLandmarks.exe
[3193/3598] Linking CXX executable bin\example_face_sample_train_landmark_detector.exe
[3194/3598] Linking CXX executable bin\example_face_sample_face_swapping.exe
[3195/3598] Linking CXX executable bin\example_face_sampleDetectLandmarksvideo.exe
[3196/3598] Linking CXX executable bin\example_face_sample_train_landmark_detector2.exe
[3197/3598] Linking CXX executable bin\example_face_samplewriteconfigfile.exe
[3198/3598] Linking CXX executable bin\example_gapi_api_example.exe
[3199/3598] Linking CXX executable bin\example_tracking_multitracker.exe
[3200/3598] Linking CXX executable bin\example_gapi_draw_example.exe
[3201/3598] Linking CXX executable bin\example_gapi_gaze_estimation.exe
[3202/3598] Linking CXX executable bin\example_gapi_infer_ssd_onnx.exe
[3203/3598] Linking CXX executable bin\example_tracking_tracker_dataset.exe
[3204/3598] Linking CXX executable bin\example_gapi_infer_single_roi.exe
[3205/3598] Linking CXX executable bin\example_gapi_oak_copy.exe
[3206/3598] Linking CXX executable bin\example_tracking_tracker.exe
[3207/3598] Linking CXX executable bin\example_gapi_infer_ie_onnx_hybrid.exe
[3208/3598] Linking CXX executable bin\example_gapi_face_detection_mtcnn.exe
[3209/3598] Linking CXX executable bin\example_gapi_oak_basic_infer.exe
[3210/3598] Linking CXX executable bin\example_gapi_oak_small_hetero_pipeline.exe
[3211/3598] Linking CXX executable bin\example_gapi_oak_rgb_camera_encoding.exe
[3212/3598] Linking CXX executable bin\example_gapi_slides_blur_gapi.exe
[3213/3598] Linking CXX executable bin\example_gapi_onevpl_infer_single_roi.exe
[3214/3598] Linking CXX executable bin\example_gapi_pipeline_modeling_tool.exe
[3215/3598] Linking CXX executable bin\example_gapi_slides_sobel_cv.exe
[3216/3598] Linking CXX executable bin\example_gapi_privacy_masking_camera.exe
[3217/3598] Linking CXX executable bin\example_gapi_semantic_segmentation.exe
[3218/3598] Linking CXX executable bin\example_gapi_slides_sobel_gapi.exe
[3219/3598] Linking CXX executable bin\example_optflow_gpc_evaluate.exe
[3220/3598] Linking CXX executable bin\example_optflow_motempl.exe
[3221/3598] Linking CXX executable bin\example_gapi_text_detection.exe
[3222/3598] Linking CXX executable bin\example_optflow_simpleflow_demo.exe
[3223/3598] Linking CXX executable bin\example_optflow_gpc_train.exe
[3224/3598] Linking CXX executable bin\example_optflow_pcaflow_demo.exe
[3225/3598] Linking CXX executable bin\example_optflow_tvl1_optical_flow.exe
[3226/3598] Linking CXX executable bin\example_tracking_benchmark.exe
[3227/3598] Linking CXX executable bin\example_optflow_optical_flow_evaluation.exe
[3228/3598] Linking CXX executable bin\example_tracking_csrt.exe
[3229/3598] Linking CXX executable bin\example_tracking_goturnTracker.exe
[3230/3598] Linking CXX executable bin\example_tracking_multiTracker_dataset.exe
[3231/3598] Linking CXX executable bin\example_tracking_kcf.exe
[3232/3598] Linking CXX executable bin\example_tracking_tracking_by_matching.exe
[3233/3598] Linking CXX executable bin\example_tracking_tutorial_customizing_cn_tracker.exe
[3234/3598] Linking CXX static library lib\opencv_ts460.lib
[3235/3598] Linking CXX executable bin\example_tracking_tutorial_introduction_to_tracker.exe
[3236/3598] Linking CXX executable bin\example_cudaoptflow_optical_flow.exe
[3237/3598] Linking CXX executable bin\example_tracking_tutorial_multitracker.exe
[3238/3598] Linking CXX executable bin\example_stereo_dense_disparity.exe
[3239/3598] Linking CXX executable bin\example_cudaoptflow_nvidia_optical_flow.exe
[3240/3598] Linking CXX executable bin\example_videostab_videostab.exe
[3241/3598] Linking CXX executable bin\example_stereo_sample.exe
[3242/3598] Linking CXX executable bin\example_stereo_export_param_file.exe
[3243/3598] Linking CXX executable bin\opencv_waldboost_detector.exe
[3244/3598] Linking CXX executable bin\opencv_model_diagnostics.exe
[3245/3598] Linking CXX executable bin\opencv_annotation.exe
[3246/3598] Linking CXX executable bin\opencv_version.exe
[3247/3598] Linking CXX executable bin\opencv_version_win32.exe
[3248/3598] Linking CXX executable bin\opencv_visualisation.exe
[3249/3598] Linking CXX executable bin\example_cpp_intelligent_scissors.exe
[3250/3598] Linking CXX executable bin\opencv_interactive-calibration.exe
[3251/3598] Linking CXX executable bin\example_dnn_dasiamrpn_tracker.exe
[3252/3598] Linking CXX executable bin\example_dnn_face_detect.exe
[3253/3598] Linking CXX executable bin\example_snippet_imgproc_segmentation.exe
[3254/3598] Linking CXX executable bin\example_dnn_colorization.exe
[3255/3598] Linking CXX shared library bin\opencv_img_hash460.dll
[3256/3598] Linking CXX executable bin\opencv_test_flann.exe
[3257/3598] Linking CXX executable bin\opencv_test_intensity_transform.exe
[3258/3598] Linking CXX executable bin\opencv_test_phase_unwrapping.exe
[3259/3598] Linking CXX executable bin\opencv_test_quality.exe
[3260/3598] Linking CXX executable bin\opencv_test_reg.exe
[3261/3598] Linking CXX executable bin\opencv_test_ml.exe
[3262/3598] Linking CXX executable bin\opencv_perf_reg.exe
[3263/3598] Linking CXX executable bin\opencv_perf_cudafilters.exe
[3264/3598] Linking CXX executable bin\opencv_perf_cudawarping.exe
[3265/3598] Linking CXX executable bin\opencv_test_dnn_superres.exe
[3266/3598] Linking CXX executable bin\opencv_test_cudawarping.exe
[3267/3598] Linking CXX executable bin\opencv_perf_cudaarithm.exe
[3268/3598] Linking CXX executable bin\opencv_test_cudafilters.exe
[3269/3598] Linking CXX executable bin\opencv_perf_dnn.exe
[3270/3598] Linking CXX executable bin\opencv_perf_cudaimgproc.exe
[3271/3598] Linking CXX executable bin\opencv_perf_dnn_superres.exe
[3272/3598] Linking CXX executable bin\opencv_test_line_descriptor.exe
[3273/3598] Linking CXX executable bin\opencv_perf_imgcodecs.exe
[3274/3598] Linking CXX executable bin\opencv_test_cudaimgproc.exe
[3275/3598] Linking CXX executable bin\opencv_test_fuzzy.exe
[3276/3598] Linking CXX executable bin\opencv_perf_line_descriptor.exe
[3277/3598] Linking CXX executable bin\opencv_test_cudaarithm.exe
[3278/3598] Linking CXX executable bin\opencv_perf_features2d.exe
[3279/3598] Linking CXX executable bin\opencv_test_imgcodecs.exe
[3280/3598] Linking CXX executable bin\opencv_test_saliency.exe
[3281/3598] Linking CXX executable bin\opencv_test_features2d.exe
[3282/3598] Linking CXX executable bin\opencv_test_text.exe
[3283/3598] Linking CXX executable bin\opencv_perf_photo.exe
[3284/3598] Linking CXX executable bin\opencv_test_photo.exe
[3285/3598] Linking CXX executable bin\opencv_perf_core.exe
[3286/3598] Linking CXX executable bin\opencv_perf_xphoto.exe
[3287/3598] Linking CXX executable bin\opencv_perf_videoio.exe
[3288/3598] Linking CXX executable bin\opencv_test_wechat_qrcode.exe
[3289/3598] Linking CXX executable bin\opencv_test_barcode.exe
[3290/3598] Linking CXX executable bin\opencv_test_xphoto.exe
[3291/3598] Linking CXX executable bin\opencv_test_videoio.exe
[3292/3598] Linking CXX executable bin\opencv_test_imgproc.exe
[3293/3598] Linking CXX executable bin\opencv_test_dnn.exe
[3294/3598] Linking CXX executable bin\opencv_perf_calib3d.exe
[3295/3598] Linking CXX executable bin\opencv_perf_cudacodec.exe
[3296/3598] Linking CXX executable bin\opencv_perf_cudastereo.exe
[3297/3598] Linking CXX executable bin\opencv_test_cudacodec.exe
[3298/3598] Linking CXX executable bin\opencv_perf_cudafeatures2d.exe
[3299/3598] Linking CXX executable bin\opencv_perf_imgproc.exe
[3300/3598] Linking CXX executable bin\opencv_test_cudastereo.exe
[3301/3598] Linking CXX executable bin\opencv_test_rapid.exe
[3302/3598] Linking CXX executable bin\opencv_perf_objdetect.exe
[3303/3598] Linking CXX executable bin\opencv_test_mcc.exe
[3304/3598] Linking CXX executable bin\opencv_test_highgui.exe
[3305/3598] Linking CXX executable bin\opencv_test_calib3d.exe
[3306/3598] Linking CXX executable bin\opencv_test_cudafeatures2d.exe
[3307/3598] Linking CXX executable bin\opencv_test_rgbd.exe
[3308/3598] Linking CXX executable bin\opencv_test_objdetect.exe
[3309/3598] Linking CXX executable bin\opencv_test_shape.exe
[3310/3598] Linking CXX executable bin\opencv_perf_rgbd.exe
[3311/3598] Linking CXX executable bin\opencv_test_structured_light.exe
[3312/3598] Linking CXX executable bin\opencv_test_xfeatures2d.exe
[3313/3598] Linking CXX executable bin\opencv_test_video.exe
[3314/3598] Linking CXX executable bin\opencv_perf_cudabgsegm.exe
[3315/3598] Linking CXX executable bin\opencv_perf_video.exe
[3316/3598] Linking CXX executable bin\opencv_perf_xfeatures2d.exe
[3317/3598] Linking CXX executable bin\opencv_test_bgsegm.exe
[3318/3598] Linking CXX executable bin\opencv_perf_aruco.exe
[3319/3598] Linking CXX executable bin\opencv_test_aruco.exe
[3320/3598] Linking CXX executable bin\opencv_perf_cudalegacy.exe
[3321/3598] Linking CXX executable bin\opencv_test_cudabgsegm.exe
[3322/3598] Linking CXX executable bin\opencv_test_bioinspired.exe
[3323/3598] Linking CXX executable bin\opencv_test_cudaobjdetect.exe
[3324/3598] Linking CXX executable bin\opencv_perf_bioinspired.exe
[3325/3598] Linking CXX executable bin\opencv_test_face.exe
[3326/3598] Linking CXX executable bin\opencv_perf_cudaobjdetect.exe
[3327/3598] Linking CXX executable bin\opencv_perf_ximgproc.exe
[3328/3598] Linking CXX executable bin\opencv_test_cudalegacy.exe
[3329/3598] Linking CXX executable bin\opencv_test_ximgproc.exe
[3330/3598] Linking CXX executable bin\opencv_test_optflow.exe
[3331/3598] Linking CXX executable bin\opencv_perf_optflow.exe
[3332/3598] Linking CXX executable bin\opencv_perf_tracking.exe
[3333/3598] Linking CXX executable bin\opencv_test_stereo.exe
[3334/3598] Linking CXX executable bin\opencv_test_superres.exe
[3335/3598] Linking CXX executable bin\example_cpp_application_trace.exe
[3336/3598] Linking CXX executable bin\example_cpp_audio_spectrogram.exe
[3337/3598] Linking CXX executable bin\example_img_hash_hash_samples.exe
[3338/3598] Linking CXX executable bin\opencv_test_cudaoptflow.exe
[3339/3598] Linking CXX executable bin\opencv_test_stitching.exe
[3340/3598] Linking CXX executable bin\opencv_perf_cudaoptflow.exe
[3341/3598] Linking CXX executable bin\opencv_test_tracking.exe
[3342/3598] Linking CXX executable bin\opencv_test_img_hash.exe
[3343/3598] Linking CXX executable bin\opencv_perf_stereo.exe
[3344/3598] Linking CXX executable bin\opencv_perf_stitching.exe
[3345/3598] Linking CXX executable bin\opencv_perf_superres.exe
[3346/3598] Linking CXX executable bin\opencv_test_videostab.exe
[3347/3598] Linking CXX executable bin\example_cpp_asift.exe
[3348/3598] Linking CXX executable bin\example_cpp_bgfg_segm.exe
[3349/3598] Linking CXX executable bin\example_cpp_camshiftdemo.exe
[3350/3598] Linking CXX executable bin\example_cpp_calibration.exe
[3351/3598] Linking CXX executable bin\example_cpp_3calibration.exe
[3352/3598] Linking CXX executable bin\example_cpp_cloning_gui.exe
[3353/3598] Linking CXX executable bin\example_cpp_connected_components.exe
[3354/3598] Linking CXX executable bin\example_cpp_cloning_demo.exe
[3355/3598] Linking CXX executable bin\example_cpp_create_mask.exe
[3356/3598] Linking CXX executable bin\example_cpp_contours2.exe
[3357/3598] Linking CXX executable bin\example_cpp_dbt_face_detection.exe
[3358/3598] Linking CXX executable bin\example_cpp_delaunay2.exe
[3359/3598] Linking CXX executable bin\example_cpp_cout_mat.exe
[3360/3598] Linking CXX executable bin\example_cpp_dft.exe
[3361/3598] Linking CXX executable bin\example_cpp_convexhull.exe
[3362/3598] Linking CXX executable bin\example_cpp_detect_mser.exe
[3363/3598] Linking CXX executable bin\example_cpp_detect_blob.exe
[3364/3598] Linking CXX executable bin\example_cpp_demhist.exe
[3365/3598] Linking CXX executable bin\example_cpp_digits_lenet.exe
[3366/3598] Linking CXX executable bin\example_cpp_dis_opticalflow.exe
[3367/3598] Linking CXX executable bin\example_cpp_digits_svm.exe
[3368/3598] Linking CXX executable bin\opencv_test_core.exe
[3369/3598] Linking CXX executable bin\example_cpp_drawing.exe
[3370/3598] Linking CXX executable bin\example_cpp_epipolar_lines.exe
[3371/3598] Linking CXX executable bin\example_cpp_facial_features.exe
[3372/3598] Linking CXX executable bin\example_cpp_edge.exe
[3373/3598] Linking CXX executable bin\example_cpp_distrans.exe
[3374/3598] Linking CXX executable bin\example_cpp_imagelist_creator.exe
[3375/3598] Linking CXX executable bin\example_cpp_ela.exe
[3376/3598] Linking CXX executable bin\example_cpp_em.exe
[3377/3598] Linking CXX executable bin\example_cpp_filestorage.exe
[3378/3598] Linking CXX executable bin\example_cpp_essential_mat_reconstr.exe
[3379/3598] Linking CXX executable bin\example_cpp_facedetect.exe
[3380/3598] Linking CXX executable bin\example_cpp_image_alignment.exe
[3381/3598] Linking CXX executable bin\example_cpp_fitellipse.exe
[3382/3598] Linking CXX executable bin\example_cpp_ffilldemo.exe
[3383/3598] Linking CXX executable bin\example_cpp_falsecolor.exe
[3384/3598] Linking CXX executable bin\example_cpp_example.exe
[3385/3598] Linking CXX executable bin\example_cpp_fback.exe
[3386/3598] Linking CXX executable bin\example_cpp_grabcut.exe
[3387/3598] Linking CXX executable bin\example_cpp_imagelist_reader.exe
[3388/3598] Linking CXX executable bin\example_cpp_flann_search_dataset.exe
[3389/3598] Linking CXX executable bin\example_cpp_intersectExample.exe
[3390/3598] Linking CXX executable bin\example_cpp_kmeans.exe
[3391/3598] Linking CXX executable bin\example_cpp_inpaint.exe
[3392/3598] Linking CXX executable bin\example_cpp_lkdemo.exe
[3393/3598] Linking CXX executable bin\example_cpp_letter_recog.exe
[3394/3598] Linking CXX executable bin\example_cpp_kalman.exe
[3395/3598] Linking CXX executable bin\example_tutorial_Morphology_2.exe
[3396/3598] Linking CXX executable bin\example_cpp_laplace.exe
[3397/3598] Linking CXX executable bin\example_cpp_minarea.exe
[3398/3598] Linking CXX executable bin\example_cpp_lsd_lines.exe
[3399/3598] Linking CXX executable bin\example_cpp_npr_demo.exe
[3400/3598] Linking CXX executable bin\example_cpp_mask_tmpl.exe
[3401/3598] Linking CXX executable bin\example_cpp_morphology2.exe
[3402/3598] Linking CXX executable bin\example_cpp_matchmethod_orb_akaze_brisk.exe
[3403/3598] Linking CXX executable bin\example_cpp_logistic_regression.exe
[3404/3598] Linking CXX executable bin\example_tutorial_Pyramids.exe
[3405/3598] Linking CXX executable bin\example_cpp_pca.exe
[3406/3598] Linking CXX executable bin\example_cpp_neural_network.exe
[3407/3598] Linking CXX executable bin\example_cpp_phase_corr.exe
[3408/3598] Linking CXX executable bin\example_cpp_opencv_version.exe
[3409/3598] Linking CXX executable bin\example_cpp_points_classifier.exe
[3410/3598] Linking CXX executable bin\opencv_perf_gapi.exe
[3411/3598] Linking CXX executable bin\example_cpp_peopledetect.exe
[3412/3598] Linking CXX executable bin\example_cpp_polar_transforms.exe
[3413/3598] Linking CXX executable bin\example_cpp_qrcode.exe
[3414/3598] Linking CXX executable bin\example_cpp_select3dobj.exe
[3415/3598] Linking CXX executable bin\example_cpp_segment_objects.exe
[3416/3598] Linking CXX executable bin\example_cpp_text_skewness_correction.exe
[3417/3598] Linking CXX executable bin\example_cpp_squares.exe
[3418/3598] Linking CXX executable bin\example_cpp_simd_basic.exe
[3419/3598] Linking CXX executable bin\example_cpp_smiledetect.exe
[3420/3598] Linking CXX executable bin\example_cpp_stereo_calib.exe
[3421/3598] Linking CXX executable bin\example_cpp_stereo_match.exe
[3422/3598] Linking CXX executable bin\example_cpp_stitching_detailed.exe
[3423/3598] Linking CXX executable bin\example_cpp_tree_engine.exe
[3424/3598] Linking CXX executable bin\example_cpp_stitching.exe
[3425/3598] Linking CXX executable bin\example_cpp_train_HOG.exe
[3426/3598] Linking CXX executable bin\example_cpp_train_svmsgd.exe
[3427/3598] Linking CXX executable bin\example_cpp_travelsalesman.exe
[3428/3598] Linking CXX executable bin\example_tutorial_MatchTemplate_Demo.exe
[3429/3598] Linking CXX executable bin\example_tutorial_BasicLinearTransformsTrackbar.exe
[3430/3598] Linking CXX executable bin\example_tutorial_EqualizeHist_Demo.exe
[3431/3598] Linking CXX executable bin\example_tutorial_AddingImagesTrackbar.exe
[3432/3598] Linking CXX executable bin\example_tutorial_compareHist_Demo.exe
[3433/3598] Linking CXX executable bin\example_tutorial_calcBackProject_Demo1.exe
[3434/3598] Linking CXX executable bin\example_tutorial_calcBackProject_Demo2.exe
[3435/3598] Linking CXX executable bin\example_tutorial_Threshold_inRange.exe
[3436/3598] Linking CXX executable bin\example_tutorial_calcHist_Demo.exe
[3437/3598] Linking CXX executable bin\example_tutorial_Threshold.exe
[3438/3598] Linking CXX executable bin\example_tutorial_Morphology_1.exe
[3439/3598] Linking CXX executable bin\example_tutorial_BasicLinearTransforms.exe
[3440/3598] Linking CXX executable bin\example_tutorial_HitMiss.exe
[3441/3598] Linking CXX executable bin\example_tutorial_Smoothing.exe
[3442/3598] Linking CXX executable bin\example_tutorial_Drawing_1.exe
[3443/3598] Linking CXX executable bin\example_tutorial_motion_deblur_filter.exe
[3444/3598] Linking CXX executable bin\example_tutorial_Drawing_2.exe
[3445/3598] Linking CXX executable bin\example_tutorial_Morphology_3.exe
[3446/3598] Linking CXX executable bin\example_tutorial_periodic_noise_removing_filter.exe
[3447/3598] Linking CXX executable bin\example_tutorial_anisotropic_image_segmentation.exe
[3448/3598] Linking CXX executable bin\example_tutorial_out_of_focus_deblur_filter.exe
[3449/3598] Linking CXX executable bin\example_tutorial_changing_contrast_brightness_image.exe
[3450/3598] Linking CXX executable bin\example_tutorial_HoughLines_Demo.exe
[3451/3598] Linking CXX executable bin\example_tutorial_CannyDetector_Demo.exe
[3452/3598] Linking CXX executable bin\example_tutorial_HoughCircle_Demo.exe
[3453/3598] Linking CXX executable bin\example_tutorial_Geometric_Transforms_Demo.exe
[3454/3598] Linking CXX executable bin\example_tutorial_Laplace_Demo.exe
[3455/3598] Linking CXX executable bin\example_tutorial_copyMakeBorder_demo.exe
[3456/3598] Linking CXX executable bin\example_tutorial_Sobel_Demo.exe
[3457/3598] Linking CXX executable bin\example_tutorial_filter2D_demo.exe
[3458/3598] Linking CXX executable bin\example_tutorial_Remap_Demo.exe
[3459/3598] Linking CXX executable bin\example_tutorial_imageSegmentation.exe
[3460/3598] Linking CXX executable bin\example_tutorial_houghcircles.exe
[3461/3598] Linking CXX executable bin\example_tutorial_findContours_demo.exe
[3462/3598] Linking CXX executable bin\example_tutorial_houghlines.exe
[3463/3598] Linking CXX executable bin\example_tutorial_generalContours_demo1.exe
[3464/3598] Linking CXX executable bin\example_tutorial_moments_demo.exe
[3465/3598] Linking CXX executable bin\example_tutorial_hull_demo.exe
[3466/3598] Linking CXX executable bin\example_tutorial_pointPolygonTest_demo.exe
[3467/3598] Linking CXX executable bin\example_tutorial_cornerSubPix_Demo.exe
[3468/3598] Linking CXX executable bin\example_tutorial_cornerDetector_Demo.exe
[3469/3598] Linking CXX executable bin\example_tutorial_cornerHarris_Demo.exe
[3470/3598] Linking CXX executable bin\example_tutorial_generalContours_demo2.exe
[3471/3598] Linking CXX executable bin\example_tutorial_goodFeaturesToTrack_Demo.exe
[3472/3598] Linking CXX executable bin\example_tutorial_compatibility_test.exe
[3473/3598] Linking CXX executable bin\example_tutorial_discrete_fourier_transform.exe
[3474/3598] Linking CXX executable bin\example_tutorial_camera_calibration.exe
[3475/3598] Linking CXX executable bin\example_tutorial_file_input_output.exe
[3476/3598] Linking CXX executable bin\example_tutorial_AddingImages.exe
[3477/3598] Linking CXX executable bin\example_tutorial_mat_mask_operations.exe
[3478/3598] Linking CXX executable bin\example_tutorial_how_to_use_OpenCV_parallel_for_.exe
[3479/3598] Linking CXX executable bin\example_tutorial_how_to_scan_images.exe
[3480/3598] Linking CXX executable bin\example_tutorial_mat_the_basic_image_container.exe
[3481/3598] Linking CXX executable bin\example_tutorial_how_to_use_OpenCV_parallel_for_new.exe
[3482/3598] Linking CXX executable bin\example_tutorial_mat_operations.exe
[3483/3598] Linking CXX executable bin\example_tutorial_univ_intrin.exe
[3484/3598] Linking CXX executable bin\example_tutorial_planar_tracking.exe
[3485/3598] Linking CXX executable bin\example_tutorial_homography_from_camera_displacement.exe
[3486/3598] Linking CXX executable bin\example_tutorial_AKAZE_match.exe
[3487/3598] Linking CXX executable bin\example_tutorial_decompose_homography.exe
[3488/3598] Linking CXX executable bin\example_tutorial_perspective_correction.exe
[3489/3598] Linking CXX executable bin\example_tutorial_pose_from_homography.exe
[3490/3598] Linking CXX executable bin\example_tutorial_panorama_stitching_rotating_camera.exe
[3491/3598] Linking CXX executable bin\example_tutorial_SURF_matching_Demo.exe
[3492/3598] Linking CXX executable bin\example_tutorial_SURF_detection_Demo.exe
[3493/3598] Linking CXX executable bin\example_tutorial_SURF_FLANN_matching_Demo.exe
[3494/3598] Linking CXX executable bin\example_tutorial_SURF_FLANN_matching_homography_Demo.exe
[3495/3598] Linking CXX executable bin\example_tutorial_api_ref_snippets.exe
[3496/3598] Linking CXX executable bin\example_tutorial_age_gender_emotion_recognition.exe
[3497/3598] Linking CXX executable bin\example_tutorial_dynamic_graph_snippets.exe
[3498/3598] Linking CXX executable bin\example_tutorial_porting_anisotropic_image_segmentation_gapi_fluid.exe
[3499/3598] Linking CXX executable bin\example_tutorial_kernel_api_snippets.exe
[3500/3598] Linking CXX executable bin\example_tutorial_gpu-basics-similarity.exe
[3501/3598] Linking CXX executable bin\example_tutorial_porting_anisotropic_image_segmentation_gapi.exe
[3502/3598] Linking CXX executable bin\example_tutorial_security_barrier_camera.exe
[3503/3598] Linking CXX executable bin\example_tutorial_display_image.exe
[3504/3598] Linking CXX executable bin\example_tutorial_face_beautification.exe
[3505/3598] Linking CXX executable bin\example_tutorial_gdal-image.exe
[3506/3598] Linking CXX executable bin\example_tutorial_documentation.exe
[3507/3598] Linking CXX executable bin\example_tutorial_introduction_windows_vs.exe
[3508/3598] Linking CXX executable bin\example_tutorial_introduction_to_pca.exe
[3509/3598] Linking CXX executable bin\example_tutorial_non_linear_svms.exe
[3510/3598] Linking CXX executable bin\example_tutorial_objectDetection.exe
[3511/3598] Linking CXX executable bin\example_tutorial_introduction_to_svm.exe
[3512/3598] Linking CXX executable bin\example_tutorial_decolor.exe
[3513/3598] Linking CXX executable bin\example_tutorial_cloning_demo.exe
[3514/3598] Linking CXX executable bin\example_snippet_core_mat_checkVector.exe
[3515/3598] Linking CXX executable bin\example_tutorial_hdr_imaging.exe
[3516/3598] Linking CXX executable bin\example_tutorial_npr_demo.exe
[3517/3598] Linking CXX executable bin\example_snippet_core_reduce.exe
[3518/3598] Linking CXX executable bin\example_snippet_core_merge.exe
[3519/3598] Linking CXX executable bin\example_tutorial_cloning_gui.exe
[3520/3598] Linking CXX executable bin\example_snippet_imgproc_HoughLinesPointSet.exe
[3521/3598] Linking CXX executable bin\example_snippet_imgproc_HoughLinesP.exe
[3522/3598] Linking CXX executable bin\example_snippet_core_various.exe
[3523/3598] Linking CXX executable bin\example_snippet_imgproc_HoughLinesCircles.exe
[3524/3598] Linking CXX executable bin\example_snippet_imgcodecs_imwrite.exe
[3525/3598] Linking CXX executable bin\example_snippet_core_split.exe
[3526/3598] Linking CXX executable bin\example_snippet_imgproc_applyColorMap.exe
[3527/3598] Linking CXX executable bin\example_snippet_imgproc_drawContours.exe
[3528/3598] Linking CXX executable bin\example_snippet_imgproc_calcHist.exe
[3529/3598] Linking CXX executable bin\example_tutorial_meanshift.exe
[3530/3598] Linking CXX executable bin\example_tutorial_bg_sub.exe
[3531/3598] Linking CXX executable bin\example_tutorial_optical_flow.exe
[3532/3598] Linking CXX executable bin\example_tutorial_camshift.exe
[3533/3598] Linking CXX executable bin\example_tutorial_orbbec_astra.exe
[3534/3598] Linking CXX executable bin\example_tutorial_video-write.exe
[3535/3598] Linking CXX executable bin\example_tutorial_optical_flow_dense.exe
[3536/3598] Linking CXX executable bin\example_tutorial_video-input-psnr-ssim.exe
[3537/3598] Linking CXX executable bin\example_cpp_videocapture_audio.exe
[3538/3598] Linking CXX executable bin\example_tutorial_LATCH_match.exe
[3539/3598] Linking CXX executable bin\example_cpp_videocapture_audio_combination.exe
[3540/3598] Linking CXX executable bin\example_cpp_videocapture_basic.exe
[3541/3598] Linking CXX executable bin\example_cpp_videocapture_gphoto2_autofocus.exe
[3542/3598] Linking CXX executable bin\example_cpp_videocapture_camera.exe
[3543/3598] Linking CXX executable bin\example_cpp_videocapture_image_sequence.exe
[3544/3598] Linking CXX executable bin\example_cpp_videocapture_gstreamer_pipeline.exe
[3545/3598] Linking CXX executable bin\example_cpp_videocapture_microphone.exe
[3546/3598] Linking CXX executable bin\example_cpp_videowriter_basic.exe
[3547/3598] Linking CXX executable bin\example_cpp_videocapture_openni.exe
[3548/3598] Linking CXX executable bin\example_cpp_videocapture_starter.exe
[3549/3598] Linking CXX executable bin\example_cpp_videocapture_realsense.exe
[3550/3598] Linking CXX executable bin\example_dnn_human_parsing.exe
[3551/3598] Linking CXX executable bin\example_cpp_watershed.exe
[3552/3598] Linking CXX executable bin\example_cpp_warpPerspective_demo.exe
[3553/3598] Linking CXX executable bin\example_dnn_classification.exe
[3554/3598] Linking CXX executable bin\example_opencl_opencl-opencv-interop.exe
[3555/3598] Linking CXX executable bin\example_tutorial_pnp_detection.exe
[3556/3598] Linking CXX executable bin\example_dnn_object_detection.exe
[3557/3598] Linking CXX executable bin\example_dnn_person_reid.exe
[3558/3598] Linking CXX executable bin\example_tutorial_pnp_registration.exe
[3559/3598] Linking CXX executable bin\example_dnn_openpose.exe
[3560/3598] Linking CXX executable bin\example_dnn_scene_text_detection.exe
[3561/3598] Linking CXX executable bin\example_gpu_alpha_comp.exe
[3562/3598] Linking CXX executable bin\example_gpu_cascadeclassifier.exe
[3563/3598] Linking CXX executable bin\example_dnn_speech_recognition.exe
[3564/3598] Linking CXX executable bin\example_dnn_segmentation.exe
[3565/3598] Linking CXX executable bin\example_dnn_text_detection.exe
[3566/3598] Linking CXX executable bin\example_dnn_scene_text_spotting.exe
[3567/3598] Linking CXX executable bin\example_dnn_scene_text_recognition.exe
[3568/3598] Linking CXX executable bin\opencv_test_gapi.exe
[3569/3598] Linking CXX executable bin\example_gpu_pyrlk_optical_flow.exe
[3570/3598] Linking CXX executable bin\example_gpu_houghlines.exe
[3571/3598] Linking CXX executable bin\example_gpu_bgfg_segm.exe
[3572/3598] Linking CXX executable bin\example_gpu_generalized_hough.exe
[3573/3598] Linking CXX executable bin\example_gpu_farneback_optical_flow.exe
[3574/3598] Linking CXX executable bin\example_gpu_multi.exe
[3575/3598] Linking CXX executable bin\example_gpu_morphology.exe
[3576/3598] Linking CXX executable bin\example_gpu_hog.exe
[3577/3598] Linking CXX executable bin\example_gpu_stereo_multi.exe
[3578/3598] Linking CXX executable bin\example_gpu_super_resolution.exe
[3579/3598] Linking CXX executable bin\example_gpu_surf_keypoint_matcher.exe
[3580/3598] Linking CXX executable bin\example_gpu_stereo_match.exe
[3581/3598] Linking CXX executable bin\example_tapi_bgfg_segm.exe
[3582/3598] Linking CXX executable bin\example_gpu_video_reader.exe
[3583/3598] Linking CXX executable bin\example_gpu_video_writer.exe
[3584/3598] Linking CXX executable bin\example_tapi_clahe.exe
[3585/3598] Linking CXX executable bin\example_tapi_camshift.exe
[3586/3598] Linking CXX executable bin\example_tapi_opencl_custom_kernel.exe
[3587/3598] Linking CXX executable bin\example_tapi_hog.exe
[3588/3598] Linking CXX executable bin\example_tapi_dense_optical_flow.exe
[3589/3598] Linking CXX executable bin\example_tapi_pyrlk_optical_flow.exe
[3590/3598] Linking CXX executable bin\example_tapi_video_acceleration.exe
[3591/3598] Linking CXX executable bin\example_tapi_squares.exe
[3592/3598] Linking CXX executable bin\example_tapi_ufacedetect.exe
[3593/3598] Linking CXX executable bin\example_directx_d3d10_interop.exe
[3594/3598] Linking CXX executable bin\example_directx_d3d11_interop.exe
[3595/3598] Linking CXX executable bin\example_opengl_opengl.exe
[3596/3598] Linking CXX executable bin\example_directx_d3d9ex_interop.exe
[3597/3598] Linking CXX executable bin\example_directx_d3d9_interop.exe
[3597/3598] Install the project...
-- Install configuration: "Release"
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/ippicv-readme.htm
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/ippicv-EULA.rtf
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/ippicv-third-party-programs.txt
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/ippiw-support.txt
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/ippiw-third-party-programs.txt
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/ippiw-EULA.rtf
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/opencl-headers-LICENSE.txt
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/ade-LICENSE
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/ffmpeg-license.txt
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/ffmpeg-readme.txt
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cvconfig.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/opencv_modules.hpp
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/lib/OpenCVModules.cmake
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/lib/OpenCVModules-release.cmake
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/lib/OpenCVConfig-version.cmake
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/lib/OpenCVConfig.cmake
-- Installing: D:/build/opencv/ninja_base/install/./OpenCVConfig-version.cmake
-- Installing: D:/build/opencv/ninja_base/install/./OpenCVConfig.cmake
-- Installing: D:/build/opencv/ninja_base/install/./LICENSE
-- Installing: D:/build/opencv/ninja_base/install/./setup_vars_opencv4.cmd
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/zlib-README
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/libjpeg-turbo-README.md
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/libjpeg-turbo-LICENSE.md
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/libjpeg-turbo-README.ijg
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/libtiff-COPYRIGHT
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/libopenjp2-README.md
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/libopenjp2-LICENSE
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/libpng-LICENSE
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/libpng-README
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/openexr-LICENSE
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/openexr-AUTHORS.ilmbase
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/openexr-AUTHORS.openexr
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/protobuf-LICENSE
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/protobuf-README.md
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/quirc-LICENSE
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/ittnotify-LICENSE.BSD
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/ittnotify-LICENSE.GPL
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/opencv.hpp
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_core.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_core.exe
-- Installing: D:/build/opencv/ninja_base/install/etc/licenses/SoftFloat-COPYING.txt
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_cudaarithm.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_cudaarithm.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_flann.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_imgproc.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_imgproc.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_intensity_transform.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/intensity_transform/example_intensity_transform_intensity_transform.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/intensity_transform/intensity_transform.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/intensity_transform
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_ml.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_phase_unwrapping.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/phase_unwrapping/example_phase_unwrapping_unwrap.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/phase_unwrapping/unwrap.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/phase_unwrapping
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/plot/example_plot_plot_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/plot/plot_demo.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/plot
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_quality.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/quality/example_quality_brisque_eval_tid2008.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/quality/example_quality_brisque_trainer_livedb.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/quality/brisque_eval_tid2008.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/quality/brisque_model_live.yml
-- Installing: D:/build/opencv/ninja_base/install/samples/quality/brisque_range_live.yml
-- Installing: D:/build/opencv/ninja_base/install/samples/quality/brisque_trainer_livedb.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/quality
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_reg.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_reg.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/reg/example_reg_map_test.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/reg/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/reg/LR_05.png
-- Installing: D:/build/opencv/ninja_base/install/samples/reg/LR_06.png
-- Installing: D:/build/opencv/ninja_base/install/samples/reg/home.png
-- Installing: D:/build/opencv/ninja_base/install/samples/reg/map_test.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/reg/reg_shift.py
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/reg
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/surface_matching/example_surface_matching_ppf_load_match.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/surface_matching/example_surface_matching_ppf_normal_computation.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/surface_matching/ppf_icp.py
-- Installing: D:/build/opencv/ninja_base/install/samples/surface_matching/ppf_load_match.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/surface_matching/ppf_load_match.py
-- Installing: D:/build/opencv/ninja_base/install/samples/surface_matching/ppf_normal_computation.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/surface_matching/data
-- Installing: D:/build/opencv/ninja_base/install/samples/surface_matching/data/parasaurolophus_6700.ply
-- Installing: D:/build/opencv/ninja_base/install/samples/surface_matching/data/parasaurolophus_low_normals2.ply
-- Installing: D:/build/opencv/ninja_base/install/samples/surface_matching/data/rs1_normals.ply
-- Installing: D:/build/opencv/ninja_base/install/samples/surface_matching/data/rs22_proc2.ply
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_cudafilters.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_cudafilters.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_cudaimgproc.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_cudaimgproc.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cudaimgproc/example_cudaimgproc_connected_components.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/cudaimgproc/connected_components.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/cudaimgproc
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_cudawarping.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_cudawarping.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_dnn.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_dnn.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_dnn_superres.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_dnn_superres.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn_superres/example_dnn_superres_dnn_superres.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn_superres/example_dnn_superres_dnn_superres_benchmark_quality.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn_superres/example_dnn_superres_dnn_superres_benchmark_time.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn_superres/example_dnn_superres_dnn_superres_multioutput.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn_superres/example_dnn_superres_dnn_superres_video.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_superres/butterfly.png
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_superres/dnn_superres.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_superres/dnn_superres_benchmark_quality.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_superres/dnn_superres_benchmark_time.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_superres/dnn_superres_multioutput.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_superres/dnn_superres_video.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/dnn_superres
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_features2d.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_features2d.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_fuzzy.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/fuzzy/example_fuzzy_fuzzy_filtering.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/fuzzy/example_fuzzy_fuzzy_inpainting.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/fuzzy/fuzzy_filtering.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/fuzzy/fuzzy_inpainting.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/fuzzy/input.png
-- Installing: D:/build/opencv/ninja_base/install/samples/fuzzy/mask1.png
-- Installing: D:/build/opencv/ninja_base/install/samples/fuzzy/mask2.png
-- Installing: D:/build/opencv/ninja_base/install/samples/fuzzy/mask3.png
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/fuzzy
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/hfs/example_hfs_example.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/hfs/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/hfs/example.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/hfs/data
-- Installing: D:/build/opencv/ninja_base/install/samples/hfs/data/000.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/hfs/data/001.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/hfs/data/002.jpg
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_imgcodecs.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_imgcodecs.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_line_descriptor.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_line_descriptor.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_compute_descriptors.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_knn_matching.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_lines_extraction.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_lsd_lines_extraction.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_matching.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/line_descriptor/example_line_descriptor_radius_matching.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/line_descriptor/compute_descriptors.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/line_descriptor/knn_matching.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/line_descriptor/lines_extraction.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/line_descriptor/lsd_lines_extraction.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/line_descriptor/matching.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/line_descriptor/radius_matching.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/line_descriptor
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_photo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_photo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_saliency.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/saliency/example_saliency_computeSaliency.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/saliency/computeSaliency.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/saliency/ObjectnessTrainedModel
-- Installing: D:/build/opencv/ninja_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8HSV.idx.yml.gz
-- Installing: D:/build/opencv/ninja_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8HSV.wS1.yml.gz
-- Installing: D:/build/opencv/ninja_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8HSV.wS2.yml.gz
-- Installing: D:/build/opencv/ninja_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8I.idx.yml.gz
-- Installing: D:/build/opencv/ninja_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8I.wS1.yml.gz
-- Installing: D:/build/opencv/ninja_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8I.wS2.yml.gz
-- Installing: D:/build/opencv/ninja_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8MAXBGR.idx.yml.gz
-- Installing: D:/build/opencv/ninja_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8MAXBGR.wS1.yml.gz
-- Installing: D:/build/opencv/ninja_base/install/samples/saliency/ObjectnessTrainedModel/ObjNessB2W8MAXBGR.wS2.yml.gz
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_text.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/text/example_text_character_recognition.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/text/example_text_cropped_word_recognition.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/text/example_text_dictnet_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/text/example_text_end_to_end_recognition.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/text/example_text_segmented_word_recognition.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/text/example_text_text_recognition_cnn.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/text/example_text_textbox_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/text/example_text_textdetection.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/text/example_text_textdetection_swt.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/text/example_text_webcam_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/text/OCRBeamSearch_CNN_model_data.xml.gz
-- Installing: D:/build/opencv/ninja_base/install/samples/text/OCRHMM_knn_model_data.xml.gz
-- Installing: D:/build/opencv/ninja_base/install/samples/text/OCRHMM_transitions_table.xml
-- Installing: D:/build/opencv/ninja_base/install/samples/text/character_recognition.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/text/cropped_word_recognition.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/text/deeptextdetection.py
-- Installing: D:/build/opencv/ninja_base/install/samples/text/detect_er_chars.py
-- Installing: D:/build/opencv/ninja_base/install/samples/text/dictnet_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/text/end_to_end_recognition.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext01.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext02.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext03.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext04.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext05.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext06.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_char01.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_char02.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_char03.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_segmented_word01.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_segmented_word01_mask.png
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_segmented_word02.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_segmented_word02_mask.png
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_segmented_word03.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_segmented_word03_mask.png
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_segmented_word04.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_segmented_word04_mask.png
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_segmented_word05.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_segmented_word05_mask.png
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_word01.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_word02.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_word03.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/scenetext_word04.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/text/segmented_word_recognition.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/text/text_recognition_cnn.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/text/textbox.prototxt
-- Installing: D:/build/opencv/ninja_base/install/samples/text/textbox_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/text/textdetection.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/text/textdetection.py
-- Installing: D:/build/opencv/ninja_base/install/samples/text/textdetection_swt.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/text/trained_classifierNM1.xml
-- Installing: D:/build/opencv/ninja_base/install/samples/text/trained_classifierNM2.xml
-- Installing: D:/build/opencv/ninja_base/install/samples/text/trained_classifier_erGrouping.xml
-- Installing: D:/build/opencv/ninja_base/install/samples/text/webcam_demo.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/text
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_videoio.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_videoio.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_videoio_ffmpeg460_64.dll
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_wechat_qrcode.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/wechat_qrcode/example_wechat_qrcode_qrcode_example.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/wechat_qrcode/qrcode.py
-- Installing: D:/build/opencv/ninja_base/install/samples/wechat_qrcode/qrcode_example.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/wechat_qrcode
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_xphoto.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_xphoto.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xphoto/example_xphoto_bm3d_image_denoising.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xphoto/example_xphoto_color_balance.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xphoto/example_xphoto_dct_image_denoising.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xphoto/example_xphoto_inpainting.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xphoto/example_xphoto_oil.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/xphoto/bm3d_image_denoising.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/xphoto/color_balance.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/xphoto/color_balance_benchmark.py
-- Installing: D:/build/opencv/ninja_base/install/samples/xphoto/dct_image_denoising.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/xphoto/inpainting.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/xphoto/learn_color_balance.py
-- Installing: D:/build/opencv/ninja_base/install/samples/xphoto/oil.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/xphoto
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_barcode.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/barcode/example_barcode_barcode.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/barcode/barcode.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/barcode
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_calib3d.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_calib3d.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_cudacodec.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_cudacodec.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_cudafeatures2d.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_cudafeatures2d.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_cudastereo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_cudastereo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_ar_hmdb.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_ar_hmdb_benchmark.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_ar_sports.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_fr_adience.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_fr_lfw.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_fr_lfw_benchmark.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_gr_chalearn.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_gr_skig.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_hpe_humaneva.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_hpe_parse.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_ir_affine.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_ir_robot.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_is_bsds.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_is_weizmann.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_msm_epfl.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_msm_middlebury.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_or_imagenet.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_or_mnist.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_or_pascal.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_or_sun.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_pd_caltech.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_pd_inria.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_slam_kitti.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_slam_tumindoor.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_sr_bsds.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_sr_div2k.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_sr_general100.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_tr_chars.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_tr_chars_benchmark.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_tr_icdar.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_tr_icdar_benchmark.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_tr_svt.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_tr_svt_benchmark.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/datasets/example_datasets_track_vot.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/ar_hmdb.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/ar_hmdb_benchmark.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/ar_sports.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/fr_adience.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/fr_lfw.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/fr_lfw_benchmark.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/gr_chalearn.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/gr_skig.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/hpe_humaneva.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/hpe_parse.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/ir_affine.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/ir_robot.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/is_bsds.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/is_weizmann.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/msm_epfl.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/msm_middlebury.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/or_imagenet.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/or_mnist.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/or_pascal.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/or_sun.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/pd_caltech.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/pd_inria.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/slam_kitti.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/slam_tumindoor.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/sr_bsds.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/sr_div2k.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/sr_general100.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/tr_chars.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/tr_chars_benchmark.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/tr_icdar.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/tr_icdar_benchmark.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/tr_svt.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/tr_svt_benchmark.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/datasets/track_vot.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/datasets
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_highgui.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_mcc.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/mcc/example_mcc_chart_detection.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/mcc/example_mcc_chart_detection_with_network.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/mcc/example_mcc_color_correction_model.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/mcc/chart_detection.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/mcc/chart_detection_with_network.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/mcc/color_correction_model.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/mcc
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_objdetect.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_objdetect.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_rapid.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/rapid/track_marker.py
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/rapid
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_rgbd.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_rgbd.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/rgbd/example_rgbd_colored_kinfu_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/rgbd/example_rgbd_dynafu_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/rgbd/example_rgbd_kinfu_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/rgbd/example_rgbd_large_kinfu_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/rgbd/example_rgbd_linemod.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/rgbd/example_rgbd_odometry_evaluation.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/rgbd/colored_kinfu_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/rgbd/dynafu_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/rgbd/io_utils.hpp
-- Installing: D:/build/opencv/ninja_base/install/samples/rgbd/kinfu_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/rgbd/kinfu_demo.py
-- Installing: D:/build/opencv/ninja_base/install/samples/rgbd/large_kinfu_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/rgbd/linemod.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/rgbd/odometry_evaluation.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/rgbd
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_shape.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/shape/example_shape_shape_example.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/shape_example.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/1.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/10.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/11.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/12.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/13.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/14.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/15.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/16.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/17.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/18.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/19.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/2.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/20.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/3.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/4.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/5.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/6.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/7.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/8.png
-- Installing: D:/build/opencv/ninja_base/install/samples/shape/data/shape_sample/9.png
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_structured_light.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/structured_light/example_structured_light_cap_pattern.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/structured_light/example_structured_light_capsinpattern.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/structured_light/example_structured_light_pointcloud.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/structured_light/example_structured_light_projectorcalibration.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/structured_light/cap_pattern.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/structured_light/capsinpattern.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/structured_light/pointcloud.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/structured_light/projectorcalibration.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/structured_light
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_video.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_video.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_xfeatures2d.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_xfeatures2d.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_bagofwords_classification.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_gms_matcher.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_pct_signatures.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_pct_webcam.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_shape_transformation.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_surf_matcher.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/xfeatures2d/example_xfeatures2d_video_homography.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/xfeatures2d/bagofwords_classification.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/xfeatures2d/export-boostdesc.py
-- Installing: D:/build/opencv/ninja_base/install/samples/xfeatures2d/gms_matcher.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/xfeatures2d/pct_signatures.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/xfeatures2d/pct_webcam.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/xfeatures2d/shape_transformation.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/xfeatures2d/surf_matcher.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/xfeatures2d/video_homography.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/xfeatures2d
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_ximgproc.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_ximgproc.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_brightedgesexample.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_color_match_template.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_colorize.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_deriche_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_disparity_filtering.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_edgeboxes_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_edgepreserving_filter_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_fast_hough_transform.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_filterdemo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_fld_lines.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_fourier_descriptors_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_graphsegmentation_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_live_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_niblack_thresholding.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_paillou_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_peilin.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_radon_transform_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_run_length_morphology_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_seeds.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_selectivesearchsegmentation_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_slic.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_structured_edge_detection.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ximgproc/example_ximgproc_thinning.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/brightedgesexample.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/color_match_template.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/colorize.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/dericheSample.py
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/deriche_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/disparity_filtering.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/edge_drawing.py
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/edgeboxes_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/edgeboxes_demo.py
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/edgepreserving_filter_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/fast_hough_transform.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/filterdemo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/findredlinedpolygonfromgooglemaps.py
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/fld_lines.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/fourier_descriptors_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/fourier_descriptors_demo.py
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/graphsegmentation_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/live_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/niblack_thresholding.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/paillou_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/peilin.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/peilin_plane.png
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/peilin_shape.png
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/polygonstanfordoutput.png
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/radon_transform_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/radon_transform_demo.py
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/run_length_morphology_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/seeds.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/selectivesearchsegmentation_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/selectivesearchsegmentation_demo.py
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/slic.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/stanford.png
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/structured_edge_detection.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ximgproc/thinning.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/ximgproc
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_aruco.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_aruco.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_aruco_dict_utils.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_calibrate_camera.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_calibrate_camera_charuco.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_create_board.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_create_board_charuco.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_create_diamond.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_create_marker.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_detect_board.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_detect_board_charuco.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_detect_diamonds.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_detect_markers.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/aruco/example_aruco_tutorial_charuco_create_detect.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/aruco_dict_utils.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/aruco_samples_utility.hpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/calibrate_camera.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/calibrate_camera_charuco.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/create_board.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/create_board_charuco.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/create_diamond.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/create_marker.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/detect_board.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/detect_board_charuco.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/detect_diamonds.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/detect_markers.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/detector_params.yml
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/tutorial_camera_charuco.yml
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/tutorial_camera_params.yml
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/tutorial_charuco_create_detect.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/aruco/tutorial_dict.yml
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/aruco
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_bgsegm.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/bgsegm/example_bgsegm_bgfg.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/bgsegm/bgfg.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/bgsegm/evaluation.py
-- Installing: D:/build/opencv/ninja_base/install/samples/bgsegm/viz.py
-- Installing: D:/build/opencv/ninja_base/install/samples/bgsegm/viz_synthetic_seq.py
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/bgsegm
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_bioinspired.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_bioinspired.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/bioinspired/example_bioinspired_OpenEXRimages_HDR_Retina_toneMapping.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/bioinspired/example_bioinspired_retinaDemo.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/bioinspired/OpenEXRimages_HDR_Retina_toneMapping.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/bioinspired/retinaDemo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/bioinspired/cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/bioinspired/cpp/OpenEXRimages_HDR_Retina_toneMapping.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/bioinspired/cpp/OpenEXRimages_HDR_Retina_toneMapping_video.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/bioinspired/cpp/retinaDemo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/bioinspired/cpp/tutorial_code
-- Installing: D:/build/opencv/ninja_base/install/samples/bioinspired/cpp/tutorial_code/bioinspired
-- Installing: D:/build/opencv/ninja_base/install/samples/bioinspired/cpp/tutorial_code/bioinspired/retina_tutorial.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/bioinspired/ocl
-- Installing: D:/build/opencv/ninja_base/install/samples/bioinspired/ocl/retina_ocl.cpp
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ccalib/example_ccalib_multi_cameras_calibration.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ccalib/example_ccalib_omni_calibration.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ccalib/example_ccalib_omni_stereo_calibration.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ccalib/example_ccalib_random_pattern_calibration.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/ccalib/example_ccalib_random_pattern_generator.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/ccalib/multi_cameras_calibration.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ccalib/omni_calibration.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ccalib/omni_stereo_calibration.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ccalib/random_pattern_calibration.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/ccalib/random_pattern_generator.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/ccalib
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_cudabgsegm.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_cudabgsegm.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_cudalegacy.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_cudalegacy.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_cudaobjdetect.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_cudaobjdetect.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn_objdetect/example_dnn_objdetect_image_classification.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn_objdetect/example_dnn_objdetect_obj_detect.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_objdetect/image_classification.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_objdetect/obj_detect.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_objdetect/data
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_objdetect/data/README.md
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_objdetect/data/SqueezeDet_deploy.prototxt
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_objdetect/data/SqueezeDet_solver.prototxt
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_objdetect/data/SqueezeDet_train_test.prototxt
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_objdetect/data/SqueezeNet_deploy.prototxt
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_objdetect/data/SqueezeNet_solver.prototxt
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn_objdetect/data/SqueezeNet_train_test.prototxt
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dpm/example_dpm_cascade_detect_camera.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dpm/example_dpm_cascade_detect_sequence.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/dpm/cascade_detect_camera.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dpm/cascade_detect_sequence.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dpm/data
-- Installing: D:/build/opencv/ninja_base/install/samples/dpm/data/inriaperson.xml
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_face.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_facemark_demo_aam.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_facemark_demo_lbf.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_facemark_lbf_fitting.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_facerec_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_facerec_eigenfaces.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_facerec_fisherfaces.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_facerec_lbph.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_facerec_save_load.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_facerec_video.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_mace_webcam.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_sampleDetectLandmarks.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_sampleDetectLandmarksvideo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_sample_face_swapping.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_sample_train_landmark_detector.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_sample_train_landmark_detector2.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/face/example_face_samplewriteconfigfile.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/face/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/face/Facemark.java
-- Installing: D:/build/opencv/ninja_base/install/samples/face/facemark_demo_aam.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/facemark_demo_lbf.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/facemark_lbf_fitting.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/facerec_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/facerec_eigenfaces.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/facerec_fisherfaces.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/facerec_lbph.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/facerec_save_load.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/facerec_video.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/landmarks_demo.py
-- Installing: D:/build/opencv/ninja_base/install/samples/face/mace_webcam.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/sampleDetectLandmarks.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/sampleDetectLandmarksvideo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/sample_config_file.xml
-- Installing: D:/build/opencv/ninja_base/install/samples/face/sample_face_swapping.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/sample_train_landmark_detector.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/sample_train_landmark_detector2.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/samplewriteconfigfile.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/face/etc
-- Installing: D:/build/opencv/ninja_base/install/samples/face/etc/at.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/face/etc/create_csv.py
-- Installing: D:/build/opencv/ninja_base/install/samples/face/etc/crop_face.py
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_gapi.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_gapi.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_api_example.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_draw_example.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_face_detection_mtcnn.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_gaze_estimation.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_infer_ie_onnx_hybrid.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_infer_single_roi.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_infer_ssd_onnx.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_oak_basic_infer.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_oak_copy.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_oak_rgb_camera_encoding.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_oak_small_hetero_pipeline.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_onevpl_infer_single_roi.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_pipeline_modeling_tool.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_privacy_masking_camera.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_semantic_segmentation.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_slides_blur_gapi.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_slides_sobel_cv.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_slides_sobel_gapi.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gapi/example_gapi_text_detection.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/api_example.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/draw_example.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/face_detection_mtcnn.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/gaze_estimation.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/infer_ie_onnx_hybrid.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/infer_single_roi.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/infer_ssd_onnx.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/oak_basic_infer.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/oak_copy.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/oak_rgb_camera_encoding.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/oak_small_hetero_pipeline.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/onevpl_infer_single_roi.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/pipeline_modeling_tool.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/privacy_masking_camera.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/semantic_segmentation.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/slides_blur_gapi.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/slides_sobel_cv.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/slides_sobel_gapi.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/text_detection.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/data
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/data/config_template.yml
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/pipeline_modeling_tool
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/pipeline_modeling_tool/dummy_source.hpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/pipeline_modeling_tool/pipeline.hpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/pipeline_modeling_tool/pipeline_builder.hpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/pipeline_modeling_tool/test_pipeline_modeling_tool.py
-- Installing: D:/build/opencv/ninja_base/install/samples/gapi/pipeline_modeling_tool/utils.hpp
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_optflow.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_optflow.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/optflow/example_optflow_gpc_evaluate.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/optflow/example_optflow_gpc_train.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/optflow/example_optflow_motempl.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/optflow/example_optflow_optical_flow_evaluation.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/optflow/example_optflow_pcaflow_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/optflow/example_optflow_simpleflow_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/optflow/example_optflow_tvl1_optical_flow.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/optflow/gpc_evaluate.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/optflow/gpc_train.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/optflow/gpc_train_middlebury.py
-- Installing: D:/build/opencv/ninja_base/install/samples/optflow/gpc_train_sintel.py
-- Installing: D:/build/opencv/ninja_base/install/samples/optflow/motempl.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/optflow/motempl.py
-- Installing: D:/build/opencv/ninja_base/install/samples/optflow/optical_flow_benchmark.py
-- Installing: D:/build/opencv/ninja_base/install/samples/optflow/optical_flow_evaluation.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/optflow/pcaflow_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/optflow/simpleflow_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/optflow/tvl1_optical_flow.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/optflow
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_stitching.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_stitching.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_tracking.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_tracking.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_benchmark.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_csrt.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_goturnTracker.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_kcf.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_multiTracker_dataset.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_multitracker.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_tracker.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_tracker_dataset.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_tracking_by_matching.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_tutorial_customizing_cn_tracker.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_tutorial_introduction_to_tracker.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tracking/example_tracking_tutorial_multitracker.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/benchmark.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/csrt.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/goturnTracker.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/kcf.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/multiTracker_dataset.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/multitracker.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/multitracker.py
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/samples_utility.hpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/tracker.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/tracker.py
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/tracker_dataset.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/tracking_by_matching.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/tutorial_customizing_cn_tracker.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/tutorial_introduction_to_tracker.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tracking/tutorial_multitracker.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/tracking
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_cudaoptflow.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_cudaoptflow.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cudaoptflow/example_cudaoptflow_nvidia_optical_flow.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cudaoptflow/example_cudaoptflow_optical_flow.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/cudaoptflow/nvidia_optical_flow.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cudaoptflow/optical_flow.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/cudaoptflow
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_stereo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_stereo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/stereo/example_stereo_dense_disparity.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/stereo/example_stereo_export_param_file.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/stereo/example_stereo_sample.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/stereo/dense_disparity.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/stereo/export_param_file.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/stereo/sample.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/stereo/sample_quasi_dense.py
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/stereo
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_superres.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_perf_superres.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_videostab.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/videostab/example_videostab_videostab.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/videostab/videostab.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/videostab
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/lib/opencv_world460.lib
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_world460.dll
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/calib3d.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/calib3d/calib3d.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/calib3d/calib3d_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/affine.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/async.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/base.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/bindings_utils.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/bufferpool.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/check.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/core.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/core_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda.inl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/block.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/border_interpolate.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/color.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/common.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/datamov_utils.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/detail/color_detail.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/detail/reduce.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/detail/reduce_key_val.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/detail/transform_detail.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/detail/type_traits_detail.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/detail/vec_distance_detail.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/dynamic_smem.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/emulation.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/filters.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/funcattrib.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/functional.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/limits.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/reduce.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/saturate_cast.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/scan.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/simd_functions.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/transform.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/type_traits.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/utility.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/vec_distance.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/vec_math.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/vec_traits.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/warp.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/warp_reduce.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda/warp_shuffle.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda_stream_accessor.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cuda_types.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cv_cpu_dispatch.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cv_cpu_helper.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cvdef.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cvstd.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cvstd.inl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/cvstd_wrapper.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/detail/async_promise.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/detail/dispatch_helper.impl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/detail/exception_ptr.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/directx.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/dualquaternion.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/dualquaternion.inl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/eigen.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/fast_math.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/hal.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/interface.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_avx.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_avx512.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_cpp.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_forward.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_msa.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_neon.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_rvv.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_rvv071.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_sse.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_sse_em.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_vsx.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/intrin_wasm.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/msa_macros.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/hal/simd_utils.impl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/mat.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/mat.inl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/matx.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/neon_utils.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/ocl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/ocl_genbase.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/ocl_defs.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/opencl_info.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/opencl_svm.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_clblas.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_clfft.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_core.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/opencl_clblas.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/opencl_clfft.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/opencl_core.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/opencl_gl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/opencl_gl_wrappers.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/opencl_svm_20.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/opencl_svm_definitions.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opencl/runtime/opencl_svm_hsa_extension.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/opengl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/operations.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/optim.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/ovx.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/parallel/backend/parallel_for.openmp.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/parallel/backend/parallel_for.tbb.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/parallel/parallel_backend.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/persistence.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/quaternion.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/quaternion.inl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/saturate.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/simd_intrinsics.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/softfloat.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/sse_utils.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/traits.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/types.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/types_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/utility.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/utils/allocator_stats.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/utils/allocator_stats.impl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/utils/filesystem.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/utils/fp_control_utils.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/utils/instrumentation.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/utils/logger.defines.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/utils/logger.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/utils/logtag.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/utils/tls.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/utils/trace.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/va_intel.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/version.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core/vsx_utils.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn/all_layers.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn/dict.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn/dnn.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn/dnn.inl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn/layer.details.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn/layer.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn/shape_utils.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn/utils/debug_utils.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn/utils/inference_engine.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn/version.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/features2d.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/features2d/features2d.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/features2d/hal/interface.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/all_indices.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/allocator.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/any.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/autotuned_index.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/composite_index.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/config.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/defines.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/dist.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/dummy.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/dynamic_bitset.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/flann.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/flann_base.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/general.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/ground_truth.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/hdf5.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/heap.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/hierarchical_clustering_index.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/index_testing.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/kdtree_index.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/kdtree_single_index.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/kmeans_index.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/linear_index.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/logger.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/lsh_index.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/lsh_table.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/matrix.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/miniflann.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/nn_index.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/object_factory.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/params.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/random.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/result_set.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/sampling.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/saving.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/simplex_downhill.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/flann/timer.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/core.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/cpu/core.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/cpu/gcpukernel.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/cpu/imgproc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/cpu/stereo.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/cpu/video.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/fluid/core.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/fluid/gfluidbuffer.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/fluid/gfluidkernel.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/fluid/imgproc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/garg.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/garray.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gasync_context.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gcall.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gcommon.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gcompiled.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gcompiled_async.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gcompoundkernel.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gcomputation.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gcomputation_async.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gframe.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gkernel.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gmat.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gmetaarg.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gopaque.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gproto.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gpu/core.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gpu/ggpukernel.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gpu/imgproc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gscalar.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gstreaming.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gtransform.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gtype_traits.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/gtyped.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/imgproc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/infer.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/infer/bindings_ie.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/infer/ie.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/infer/onnx.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/infer/parsers.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/media.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/oak/infer.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/oak/oak.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/ocl/core.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/ocl/goclkernel.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/ocl/imgproc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/opencv_includes.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/operators.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/own/assert.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/own/convert.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/own/cvdefs.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/own/exports.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/own/mat.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/own/saturate.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/own/scalar.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/own/types.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/plaidml/core.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/plaidml/gplaidmlkernel.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/plaidml/plaidml.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/python/python.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/render.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/render/render.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/render/render_types.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/rmat.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/s11n.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/s11n/base.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/stereo.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/cap.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/desync.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/format.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/gstreamer/gstreamerpipeline.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/gstreamer/gstreamersource.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/meta.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/onevpl/accel_types.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/onevpl/cfg_params.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/onevpl/data_provider_interface.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/onevpl/device_selector_interface.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/onevpl/source.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/source.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/streaming/sync.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/util/any.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/util/compiler_hints.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/util/copy_through_move.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/util/optional.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/util/throw.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/util/type_traits.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/util/util.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/util/variant.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/gapi/video.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/highgui.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/highgui/highgui.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/highgui/highgui_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgcodecs.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgcodecs/imgcodecs.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgcodecs/imgcodecs_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgcodecs/ios.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgcodecs/legacy/constants_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgcodecs/macosx.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgproc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgproc/bindings.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgproc/detail/gcgraph.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgproc/hal/hal.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgproc/hal/interface.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgproc/imgproc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgproc/imgproc_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgproc/segmentation.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/imgproc/types_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ml.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ml/ml.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ml/ml.inl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/objdetect.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/objdetect/detection_based_tracker.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/objdetect/face.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/objdetect/objdetect.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/photo.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/photo/cuda.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/photo/legacy/constants_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/photo/photo.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/autocalib.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/blenders.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/camera.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/exposure_compensate.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/matchers.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/motion_estimators.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/seam_finders.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/timelapsers.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/util.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/util_inl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/warpers.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/detail/warpers_inl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stitching/warpers.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/video.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/video/background_segm.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/video/detail/tracking.detail.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/video/legacy/constants_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/video/tracking.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/video/video.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videoio.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videoio/cap_ios.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videoio/legacy/constants_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videoio/registry.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videoio/videoio.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videoio/videoio_c.h
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/world.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/aruco.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/aruco/charuco.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/aruco/dictionary.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/barcode.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/bgsegm.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/bioinspired.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/bioinspired/bioinspired.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/bioinspired/retina.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/bioinspired/retinafasttonemapping.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/bioinspired/transientareassegmentationmodule.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ccalib.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ccalib/multicalib.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ccalib/omnidir.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ccalib/randpattern.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudaarithm.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudabgsegm.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudacodec.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudafeatures2d.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudafilters.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudaimgproc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudalegacy.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudalegacy/NCV.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudalegacy/NCVBroxOpticalFlow.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudalegacy/NCVHaarObjectDetection.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudalegacy/NCVPyramid.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudalegacy/NPP_staging.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudaobjdetect.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudaoptflow.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudastereo.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudawarping.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/block/block.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/block/detail/reduce.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/block/detail/reduce_key_val.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/block/dynamic_smem.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/block/reduce.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/block/scan.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/block/vec_distance.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/common.hpp
-- Up-to-date: D:/build/opencv/ninja_base/install/include/opencv2/cudev/common.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/expr/binary_func.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/expr/binary_op.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/expr/color.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/expr/deriv.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/expr/expr.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/expr/per_element_func.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/expr/reduction.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/expr/unary_func.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/expr/unary_op.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/expr/warping.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/functional/color_cvt.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/functional/detail/color_cvt.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/functional/functional.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/functional/tuple_adapter.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/copy.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/copy.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/histogram.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/integral.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/minmaxloc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/pyr_down.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/pyr_up.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/reduce.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/reduce_to_column.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/reduce_to_row.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/split_merge.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/transform.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/detail/transpose.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/histogram.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/integral.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/pyramids.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/reduce.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/reduce_to_vec.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/split_merge.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/transform.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/grid/transpose.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/constant.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/deriv.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/detail/gpumat.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/extrapolation.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/glob.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/gpumat.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/interpolation.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/lut.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/mask.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/remap.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/resize.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/texture.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/traits.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/transform.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/warping.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/ptr2d/zip.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/util/atomic.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/util/detail/tuple.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/util/detail/type_traits.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/util/limits.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/util/saturate_cast.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/util/simd_functions.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/util/tuple.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/util/type_traits.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/util/vec_math.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/util/vec_traits.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/warp/detail/reduce.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/warp/detail/reduce_key_val.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/warp/reduce.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/warp/scan.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/warp/shuffle.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/cudev/warp/warp.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/ar_hmdb.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/ar_sports.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/dataset.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/fr_adience.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/fr_lfw.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/gr_chalearn.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/gr_skig.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/hpe_humaneva.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/hpe_parse.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/ir_affine.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/ir_robot.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/is_bsds.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/is_weizmann.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/msm_epfl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/msm_middlebury.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/or_imagenet.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/or_mnist.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/or_pascal.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/or_sun.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/pd_caltech.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/pd_inria.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/slam_kitti.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/slam_tumindoor.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/sr_bsds.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/sr_div2k.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/sr_general100.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/tr_chars.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/tr_icdar.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/tr_svt.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/track_alov.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/track_vot.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/datasets/util.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/core_detect.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dnn_superres.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/dpm.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/face.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/face/bif.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/face/face_alignment.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/face/facemark.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/face/facemarkAAM.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/face/facemarkLBF.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/face/facemark_train.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/face/facerec.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/face/mace.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/face/predict_collector.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/fuzzy.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/fuzzy/fuzzy_F0_math.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/fuzzy/fuzzy_F1_math.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/fuzzy/fuzzy_image.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/fuzzy/types.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/hfs.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/intensity_transform.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/line_descriptor.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/line_descriptor/descriptor.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/mcc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/mcc/ccm.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/mcc/checker_detector.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/mcc/checker_model.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/optflow.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/optflow/motempl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/optflow/pcaflow.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/optflow/rlofflow.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/optflow/sparse_matching_gpc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/phase_unwrapping.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/phase_unwrapping/histogramphaseunwrapping.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/phase_unwrapping/phase_unwrapping.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/plot.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/quality.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/quality/quality_utils.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/quality/qualitybase.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/quality/qualitybrisque.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/quality/qualitygmsd.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/quality/qualitymse.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/quality/qualitypsnr.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/quality/qualityssim.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/rapid.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/reg/map.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/reg/mapaffine.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/reg/mapper.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/reg/mappergradaffine.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/reg/mappergradeuclid.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/reg/mappergradproj.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/reg/mappergradshift.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/reg/mappergradsimilar.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/reg/mapperpyramid.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/reg/mapprojec.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/reg/mapshift.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/rgbd.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/rgbd/colored_kinfu.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/rgbd/depth.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/rgbd/detail/pose_graph.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/rgbd/dynafu.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/rgbd/intrinsics.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/rgbd/kinfu.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/rgbd/large_kinfu.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/rgbd/linemod.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/rgbd/volume.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/saliency.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/saliency/saliencyBaseClasses.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/saliency/saliencySpecializedClasses.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/shape.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/shape/emdL1.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/shape/hist_cost.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/shape/shape.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/shape/shape_distance.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/shape/shape_transformer.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stereo.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stereo/descriptor.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stereo/quasi_dense_stereo.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/stereo/stereo.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/structured_light.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/structured_light/graycodepattern.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/structured_light/sinusoidalpattern.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/structured_light/structured_light.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/superres.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/superres/optical_flow.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/surface_matching.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/surface_matching/icp.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/surface_matching/pose_3d.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/surface_matching/ppf_helpers.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/surface_matching/ppf_match_3d.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/surface_matching/t_hash_int.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/text.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/text/erfilter.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/text/ocr.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/text/swt_text_detection.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/text/textDetector.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/tracking.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/tracking/feature.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/tracking/kalman_filters.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/tracking/onlineBoosting.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/tracking/tldDataset.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/tracking/tracking.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/tracking/tracking_by_matching.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/tracking/tracking_internals.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/tracking/tracking_legacy.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/deblurring.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/fast_marching.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/fast_marching_inl.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/frame_source.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/global_motion.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/inpainting.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/log.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/motion_core.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/motion_stabilizing.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/optical_flow.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/outlier_rejection.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/ring_buffer.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/stabilizer.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/videostab/wobble_suppression.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/wechat_qrcode.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/xfeatures2d.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/xfeatures2d/cuda.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/xfeatures2d/nonfree.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/brightedges.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/color_match.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/deriche_filter.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/disparity_filter.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/edge_drawing.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/edge_filter.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/edgeboxes.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/edgepreserving_filter.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/estimated_covariance.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/fast_hough_transform.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/fast_line_detector.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/fourier_descriptors.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/lsc.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/paillou_filter.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/peilin.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/radon_transform.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/ridgefilter.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/run_length_morphology.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/scansegment.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/seeds.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/segmentation.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/slic.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/sparse_match_interpolator.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/structured_edge_detection.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/ximgproc/weighted_median_filter.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/xobjdetect.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/xphoto.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/xphoto/bm3d_image_denoising.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/xphoto/dct_image_denoising.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/xphoto/inpainting.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/xphoto/oilpainting.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/xphoto/tonemap.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/xphoto/white_balance.hpp
-- Installing: D:/build/opencv/ninja_base/install/bin/opencv_waldboost_detector.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/lib/opencv_img_hash460.lib
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_img_hash460.dll
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/img_hash.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/img_hash/average_hash.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/img_hash/block_mean_hash.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/img_hash/color_moment_hash.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/img_hash/img_hash_base.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/img_hash/marr_hildreth_hash.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/img_hash/phash.hpp
-- Installing: D:/build/opencv/ninja_base/install/include/opencv2/img_hash/radial_variance_hash.hpp
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_test_img_hash.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/img_hash/example_img_hash_hash_samples.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/img_hash/hash_samples.cpp
-- Up-to-date: D:/build/opencv/ninja_base/install/samples/img_hash
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_eye.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_eye_tree_eyeglasses.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_frontalcatface.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_frontalcatface_extended.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_frontalface_alt.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_frontalface_alt2.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_frontalface_alt_tree.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_frontalface_default.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_fullbody.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_lefteye_2splits.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_licence_plate_rus_16stages.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_lowerbody.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_profileface.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_righteye_2splits.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_russian_plate_number.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_smile.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/haarcascades/haarcascade_upperbody.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/lbpcascades/lbpcascade_frontalcatface.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/lbpcascades/lbpcascade_frontalface.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/lbpcascades/lbpcascade_frontalface_improved.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/lbpcascades/lbpcascade_profileface.xml
-- Installing: D:/build/opencv/ninja_base/install/etc/lbpcascades/lbpcascade_silverware.xml
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_annotation.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_visualisation.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_interactive-calibration.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_version.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_version_win32.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/bin/opencv_model_diagnostics.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/./CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/./samples_utils.cmake
-- Installing: D:/build/opencv/ninja_base/install/samples/data
-- Installing: D:/build/opencv/ninja_base/install/samples/data/aero1.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/aero3.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/aloeGT.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/aloeL.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/aloeR.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/alphabet_36.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/data/alphabet_94.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/data/apple.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/baboon.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/basketball1.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/basketball2.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/Blender_Suzanne1.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/Blender_Suzanne2.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/blox.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/board.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/box.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/box_in_scene.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/building.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/butterfly.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/calibration.yml
-- Installing: D:/build/opencv/ninja_base/install/samples/data/cards.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/chessboard.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/chicky_512.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/data01.xml
-- Installing: D:/build/opencv/ninja_base/install/samples/data/detect_blob.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/digits.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/dnn
-- Installing: D:/build/opencv/ninja_base/install/samples/data/dnn/action_recongnition_kinetics.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/data/dnn/classification_classes_ILSVRC2012.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/data/dnn/enet-classes.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/data/dnn/object_detection_classes_coco.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/data/dnn/object_detection_classes_pascal_voc.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/data/dnn/object_detection_classes_yolov3.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/data/ela_modified.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/ela_original.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/ellipses.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/essential_mat_data.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/data/fruits.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/gradient.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/graf1.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/graf3.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/H1to3p.xml
-- Installing: D:/build/opencv/ninja_base/install/samples/data/HappyFish.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/home.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/imageTextN.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/imageTextR.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/intrinsics.yml
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left01.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left02.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left03.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left04.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left05.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left06.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left07.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left08.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left09.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left11.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left12.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left13.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left14.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/left_intrinsics.yml
-- Installing: D:/build/opencv/ninja_base/install/samples/data/lena.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/lena_tmpl.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/letter-recognition.data
-- Installing: D:/build/opencv/ninja_base/install/samples/data/leuvenA.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/leuvenB.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/licenseplate_motion.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/LinuxLogo.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/mask.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/Megamind.avi
-- Installing: D:/build/opencv/ninja_base/install/samples/data/Megamind_bugy.avi
-- Installing: D:/build/opencv/ninja_base/install/samples/data/messi5.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/ml.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/notes.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/opencv-logo-white.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/opencv-logo.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/orange.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/pca_test1.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/pic1.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/pic2.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/pic3.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/pic4.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/pic5.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/pic6.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right01.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right02.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right03.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right04.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right05.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right06.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right07.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right08.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right09.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right11.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right12.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right13.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/right14.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/rubberwhale1.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/rubberwhale2.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/smarties.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/squirrel_cls.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/starry_night.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/stereo_calib.xml
-- Installing: D:/build/opencv/ninja_base/install/samples/data/stuff.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/sudoku.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/templ.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/text_defocus.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/text_motion.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/data/tmpl.png
-- Installing: D:/build/opencv/ninja_base/install/samples/data/tree.avi
-- Installing: D:/build/opencv/ninja_base/install/samples/data/vtest.avi
-- Installing: D:/build/opencv/ninja_base/install/samples/data/WindowsLogo.jpg
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/3calibration.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/application_trace.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/asift.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/audio_spectrogram.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/bgfg_segm.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/calibration.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/camshiftdemo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/cloning_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/cloning_gui.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/connected_components.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/contours2.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/convexhull.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/cout_mat.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/create_mask.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/dbt_face_detection.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/delaunay2.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/demhist.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/detect_blob.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/detect_mser.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/dft.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/digits_lenet.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/digits_svm.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/dis_opticalflow.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/distrans.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/drawing.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/edge.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/ela.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/em.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/epipolar_lines.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/essential_mat_reconstr.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/facedetect.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/facial_features.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/falsecolor.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/fback.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/ffilldemo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/filestorage.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/fitellipse.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/flann_search_dataset.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/grabcut.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/image_alignment.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/imagelist_creator.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/imagelist_reader.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/inpaint.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/intelligent_scissors.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/intersectExample.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/kalman.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/kmeans.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/laplace.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/letter_recog.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/lkdemo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/logistic_regression.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/lsd_lines.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/mask_tmpl.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/matchmethod_orb_akaze_brisk.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/minarea.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/morphology2.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/neural_network.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/npr_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/opencv_version.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/pca.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/peopledetect.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/phase_corr.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/points_classifier.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/polar_transforms.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/qrcode.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/segment_objects.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/select3dobj.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/simd_basic.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/smiledetect.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/squares.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/stereo_calib.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/stereo_match.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/stitching.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/stitching_detailed.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/text_skewness_correction.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/train_HOG.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/train_svmsgd.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/travelsalesman.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/tree_engine.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videocapture_audio.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videocapture_audio_combination.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videocapture_basic.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videocapture_camera.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videocapture_gphoto2_autofocus.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videocapture_gstreamer_pipeline.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videocapture_image_sequence.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videocapture_microphone.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videocapture_openni.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videocapture_realsense.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videocapture_starter.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/videowriter_basic.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/warpPerspective_demo.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/cpp/watershed.cpp
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_3calibration.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_application_trace.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_asift.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_audio_spectrogram.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_bgfg_segm.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_calibration.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_camshiftdemo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_cloning_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_cloning_gui.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_connected_components.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_contours2.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_convexhull.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_cout_mat.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_create_mask.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_dbt_face_detection.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_delaunay2.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_demhist.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_detect_blob.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_detect_mser.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_dft.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_digits_lenet.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_digits_svm.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_dis_opticalflow.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_distrans.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_drawing.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_edge.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_ela.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_em.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_epipolar_lines.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_essential_mat_reconstr.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_example.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_facedetect.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_facial_features.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_falsecolor.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_fback.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_ffilldemo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_filestorage.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_fitellipse.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_flann_search_dataset.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_grabcut.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_image_alignment.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_imagelist_creator.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_imagelist_reader.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_inpaint.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_intelligent_scissors.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_intersectExample.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_kalman.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_kmeans.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_laplace.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_letter_recog.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_lkdemo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_logistic_regression.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_lsd_lines.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_mask_tmpl.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_matchmethod_orb_akaze_brisk.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_minarea.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_morphology2.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_neural_network.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_npr_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_opencv_version.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_pca.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_peopledetect.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_phase_corr.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_points_classifier.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_polar_transforms.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_qrcode.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_segment_objects.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_select3dobj.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_simd_basic.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_smiledetect.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_squares.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_stereo_calib.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_stereo_match.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_stitching.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_stitching_detailed.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_text_skewness_correction.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_train_HOG.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_train_svmsgd.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_travelsalesman.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_tree_engine.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_AddingImagesTrackbar.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_BasicLinearTransformsTrackbar.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_EqualizeHist_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_MatchTemplate_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_calcBackProject_Demo1.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_calcBackProject_Demo2.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_calcHist_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_compareHist_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_BasicLinearTransforms.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_HitMiss.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Morphology_1.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Morphology_2.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Pyramids.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Smoothing.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Threshold.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Threshold_inRange.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_anisotropic_image_segmentation.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Drawing_1.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Drawing_2.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_changing_contrast_brightness_image.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Morphology_3.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_motion_deblur_filter.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_out_of_focus_deblur_filter.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_periodic_noise_removing_filter.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_CannyDetector_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Geometric_Transforms_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_HoughCircle_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_HoughLines_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Laplace_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Remap_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_Sobel_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_copyMakeBorder_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_filter2D_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_houghcircles.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_houghlines.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_imageSegmentation.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_findContours_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_generalContours_demo1.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_generalContours_demo2.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_hull_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_moments_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_pointPolygonTest_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_cornerDetector_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_cornerHarris_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_cornerSubPix_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_goodFeaturesToTrack_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_camera_calibration.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_compatibility_test.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_AddingImages.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_discrete_fourier_transform.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_file_input_output.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_how_to_scan_images.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_how_to_use_OpenCV_parallel_for_.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_how_to_use_OpenCV_parallel_for_new.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_mat_mask_operations.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_mat_operations.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_mat_the_basic_image_container.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_univ_intrin.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_AKAZE_match.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_planar_tracking.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_decompose_homography.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_homography_from_camera_displacement.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_panorama_stitching_rotating_camera.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_perspective_correction.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_pose_from_homography.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_SURF_matching_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_SURF_detection_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_SURF_FLANN_matching_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_SURF_FLANN_matching_homography_Demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_age_gender_emotion_recognition.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_api_ref_snippets.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_dynamic_graph_snippets.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_kernel_api_snippets.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_face_beautification.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_porting_anisotropic_image_segmentation_gapi.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_porting_anisotropic_image_segmentation_gapi_fluid.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_security_barrier_camera.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_gpu-basics-similarity.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_gdal-image.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_display_image.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_documentation.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_introduction_windows_vs.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_introduction_to_pca.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_introduction_to_svm.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_non_linear_svms.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_objectDetection.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_decolor.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_hdr_imaging.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_npr_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_cloning_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_cloning_gui.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_core_mat_checkVector.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_core_merge.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_core_reduce.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_core_split.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_core_various.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_imgcodecs_imwrite.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_HoughLinesCircles.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_HoughLinesP.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_HoughLinesPointSet.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_applyColorMap.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_calcHist.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_drawContours.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/snippet/example_snippet_imgproc_segmentation.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_bg_sub.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_camshift.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_meanshift.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_optical_flow.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_optical_flow_dense.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_orbbec_astra.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_video-input-psnr-ssim.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_video-write.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tutorial/example_tutorial_LATCH_match.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_audio.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_audio_combination.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_basic.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_camera.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_gphoto2_autofocus.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_gstreamer_pipeline.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_image_sequence.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_microphone.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_openni.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_realsense.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videocapture_starter.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_videowriter_basic.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_warpPerspective_demo.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/cpp/example_cpp_watershed.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/classification.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/colorization.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/common.hpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/custom_layers.hpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/dasiamrpn_tracker.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/face_detect.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/human_parsing.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/object_detection.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/openpose.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/person_reid.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/scene_text_detection.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/scene_text_recognition.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/scene_text_spotting.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/segmentation.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/speech_recognition.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/dnn/text_detection.cpp
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_classification.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_colorization.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_dasiamrpn_tracker.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_face_detect.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_human_parsing.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_object_detection.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_openpose.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_person_reid.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_scene_text_detection.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_scene_text_recognition.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_scene_text_spotting.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_segmentation.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_speech_recognition.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/dnn/example_dnn_text_detection.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/alpha_comp.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/bgfg_segm.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/cascadeclassifier.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/farneback_optical_flow.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/generalized_hough.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/hog.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/houghlines.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/morphology.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/multi.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/pyrlk_optical_flow.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/stereo_match.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/stereo_multi.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/super_resolution.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/surf_keypoint_matcher.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/video_reader.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/gpu/video_writer.cpp
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_alpha_comp.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_bgfg_segm.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_cascadeclassifier.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_farneback_optical_flow.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_generalized_hough.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_hog.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_houghlines.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_morphology.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_multi.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_pyrlk_optical_flow.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_stereo_match.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_stereo_multi.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_super_resolution.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_surf_keypoint_matcher.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_video_reader.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/gpu/example_gpu_video_writer.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/tapi/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/tapi/bgfg_segm.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tapi/camshift.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tapi/clahe.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tapi/dense_optical_flow.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tapi/hog.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tapi/opencl_custom_kernel.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tapi/pyrlk_optical_flow.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tapi/squares.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tapi/ufacedetect.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/tapi/video_acceleration.cpp
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tapi/example_tapi_bgfg_segm.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tapi/example_tapi_camshift.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tapi/example_tapi_clahe.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tapi/example_tapi_dense_optical_flow.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tapi/example_tapi_hog.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tapi/example_tapi_opencl_custom_kernel.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tapi/example_tapi_pyrlk_optical_flow.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tapi/example_tapi_squares.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tapi/example_tapi_ufacedetect.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/tapi/example_tapi_video_acceleration.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/opencl/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/opencl/opencl-opencv-interop.cpp
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/opencl/example_opencl_opencl-opencv-interop.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/sycl/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/sycl/sycl-opencv-interop.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/directx/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/directx/d3d10_interop.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/directx/d3d11_interop.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/directx/d3d9_interop.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/directx/d3d9ex_interop.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/directx/d3dsample.hpp
-- Installing: D:/build/opencv/ninja_base/install/samples/directx/winapp.hpp
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/directx/example_directx_d3d10_interop.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/directx/example_directx_d3d11_interop.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/directx/example_directx_d3d9_interop.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/directx/example_directx_d3d9ex_interop.exe
-- Installing: D:/build/opencv/ninja_base/install/x64/vc17/samples/opengl/example_opengl_opengl.exe
-- Installing: D:/build/opencv/ninja_base/install/samples/opengl/CMakeLists.txt
-- Installing: D:/build/opencv/ninja_base/install/samples/opengl/opengl.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/opengl/opengl_interop.cpp
-- Installing: D:/build/opencv/ninja_base/install/samples/opengl/winapp.hpp

Ninja release build took: 59.23 minutes

Mention Ninja multi not working because uses old version of find, so to compile both best thing to do is build to different locations and install both in the same locaiton show example with collapseable.

print(out_build.decode("utf-8"))
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.

Current values:
NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
NotebookApp.rate_limit_window=3.0 (secs)

jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10
  Input In [137]
    jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10
            ^
SyntaxError: invalid syntax
(end-start)/60
47.87882998387019
"C:\Program Files\CMake\bin\cmake.exe" --build D:/build/opencv\\ninja_base --target install
%debug
> c:\users\b\mambaforge\lib\subprocess.py(528)run()
    526         retcode = process.poll()
    527         if check and retcode:
--> 528             raise CalledProcessError(retcode, process.args,
    529                                      output=stdout, stderr=stderr)
    530     return CompletedProcess(process.args, retcode, stdout, stderr)

ipdb> process.args
'call "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build/vcvars64.bat" && "C:/Program Files/CMake/bin/cmake.exe" --build D:/build/opencv\\ninja_base --targed install'
ipdb> exit()

Adding additional configuration options with the CMake GUI

Once you have generated the base Visual Studio solution file from the command prompt the easiest way to make any aditional configuration changes is through the CMake GUI. To do this:

  1. Fire up the CMake GUI.
  2. Making sure that the Grouped checkbox is ticked, click on the browse build button and navigate to your PATH_TO_OPENCV_SOURCE/build directory. If you have selected the correct directory the main CMake window should resemble the below. ![](https://jamesbowley.co.uk/wp-content/uploads/2020/01/opencv_4_2_0_cmake_gui.png)
  3. Now any additional configuration changes can be made by just expanding any of the grouped items and ticking or unticking the values displayed. Once you are happy just press Configure, if the bottom window displays configuration successful press Generate, and you should see
    Now you can open up the Visual Studio solution file and proceed as before.
  4. Troubleshooting:
    • Make sure you have the latest version of Visual Studio 2019 (>= 16.7.5)
    • Not all options are compatible with each other and the configuration step may fail as a result. If so examine the error messages given in the bottom window and look for a solution.
    • If the build is failing after making changes to the base configuration, I would advise you to remove the build directory and start again making sure that you can at least build the base Visual Studio solution files produces from the command line

Including Python bindings

Building and installing python support is incredibly simple, the instructions below are for python 3.7 and 3.8 however they can easily be adapted for other versions of python aswell. If you have downloaded the pre-built binaries from here then you can simply follow steps 5)-7) after first setting %openCvBuild% to the directory which you have extracted the pre-built binaries to. That is set "%openCvBuild%=EXTRACTED_DIR" where EXTRACTED_DIR contains both the install and lib directories.

Python 3.7 in the base conda environment Below are instructions on how to build OpenCV with python bindings in the base anaconda environment, which in our case uses python 3.7 as we installed anaconda with that version.

  1. Open up the windows command prompt and enter
    set "pathToAnaconda=PATH_TO_ANACONDA3"
    set "pyVer=37"
    ensuring the PATH_TO_ANACONDA3 only uses forward slashes (/) as path seperators and points to the Anaconda3 directory, e.g. C:/Users/mbironi/Anaconda3/.
  2. Follow the instructions from above to build your desired configuration, appending the below to the CMake configuration before running CMake.
    -DBUILD_opencv_python3=ON -DPYTHON3_INCLUDE_DIR=%pathToAnaconda%/include -DPYTHON3_LIBRARY=%pathToAnaconda%/libs/python%pyVer%.lib -DPYTHON3_EXECUTABLE=%pathToAnaconda%/python.exe -DPYTHON3_NUMPY_INCLUDE_DIRS=%pathToAnaconda%/lib/site-packages/numpy/core/include -DPYTHON3_PACKAGES_PATH=%pathToAnaconda%/Lib/site-packages/ -DOPENCV_SKIP_PYTHON_LOADER=ON
  3. Make sure you build release, python bindings cannot by default be generated for a debug configuration, that is unless you have specificaly built or downloaded a debug version of python. That said you can easily generate a debug build by modifying the contents of pyconfig.h, changing
    pragma comment(lib,"python37_d.lib")
    to
    pragma comment(lib,"python37.lib")
    and
    #       define Py_DEBUG
    to
    //#       define Py_DEBUG
    The default location of pyconfig.h in Anaconda3 is %USERPROFILE%\Anaconda3\include\pyconfig.h. However the version you are compiling against may differ, to check the location simply open up CMake in the build directory as detailed in Adding additional configuration options with CMake GUI and check the entries under PYTHON3_INCLUDE_DIR shown below. ![](https://jamesbowley.co.uk/wp-content/uploads/2019/09/cmake_python3.png)
  4. Verify that the cmake output detailing the modules to be built includes python3 and if not look for errors in the output preceding the below.
    --   OpenCV modules:
    --     To be built:                 aruco bgsegm bioinspired calib3d ccalib core cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev datasets dnn dnn_objdetect dpm face features2d flann fuzzy hfs highgui img_hash imgcodecs imgproc line_descriptor ml objdetect optflow phase_unwrapping photo plot python2 python3 quality reg rgbd saliency shape stereo stitching structured_light superres surface_matching text tracking ts video videoio videostab world xfeatures2d ximgproc xobjdetect xphoto
  5. In the current version of OpenCV (4.5.0), once generated the bindings (cv2.cp37-win_amd64.pyd) are copied to the site-packages directory, in our case
    "%USERPROFILE%\Anaconda3\Lib\site-packages\"
    To verify this and ensure that there are no historic installations of OpenCV either through pip or conda before continuing type the following
    dir "%USERPROFILE%\Anaconda3\Lib\site-packages\cv2*"
    and inspect the output
    17/04/2019  10:11    <DIR>         cv2
    12/10/2020  14:56        11,968,000 cv2.cp37-win_amd64.pyd
    You need to ensure that the date of the bindings copied to your installation of python (12/10/2020 14:56 in the above case) corresponds to the date and time of the build. Additionaly you must make sure that there are no other entries. In the above example the additional ouput showing a cv2 directory implies that there is an existing installation of OpenCV, either through pip or a previous build. This needs to be removed before continuing, with the method of removeal depending on how it was installed. If for some the above returns
    File Not Found
    first the verify that the python bindings have been built by entering
    dir "%openCvBuild%\lib\python3\cv2.cp37-win_amd64.pyd"
    or
    dir "%openCvBuild%\lib\python3\[Debug|Release]\cv2.cp37-win_amd64.pyd"
    if you built using from within Visual Studio, and then confirming that the following file exists
    12/10/2020  14:56        11,968,000 cv2.cp37-win_amd64.pyd
    If the file has been found then this can be manually copied accross using the following which again assumes you have python 3.7 installed through Anaconda in the default location for a single user.
    copy "%openCvBuild%\lib\python3\cv2.cp37-win_amd64.pyd" "%USERPROFILE%\Anaconda3\Lib\site-packages\cv2.cp37-win_amd64.pyd"
    or
    copy "%openCvBuild%\lib\python3\[Debug|Release]\cv2.cp37-win_amd64.pyd" "%USERPROFILE%\Anaconda3\Lib\site-packages\cv2.cp37-win_amd64.pyd"
    if you built using from within Visual Studio. Alternatively if the above also returns File Not Found then you need to ensure both that the build has completed successfully and that the output from step 4) contains python3.
  6. Include the path to the opencv_world440.dll and opencv_img_hash450.dll shared libraries in your user or system path or temporarily by entering
    set path=%openCvBuild%\install\x64\vc16\bin;%path%
  7. Test the freshly compiled python module can be located and loads correctly by entering
    python -c "import cv2; print(f'OpenCV: {cv2.__version__} for python installed and working')"
    and checking the output for
    OpenCV: 4.5.0 for python installed and working
    If you do not see the above output then see the troubleshooting section below.
Python 3.8 in a seperate conda environment Below are instructions on how to create and then use a seperate anaconda environment to build the OpenCV python bindings for a different version of python. In this case I have chosen to use a newer version of python than in the base conda environment but any version should work.
  1. First open up the Anaconda3 command prompt and create a new environment (py38) containing the base anaconda installed packages and python 3.8 instead of python 3.7
    conda create -n py38 anaconda python=3.8
  2. Then either continue in the Anaconda3 or windows command prompt entering the following to point to your new environment
    set "pathToAnaconda=PATH_TO_ANACONDA3_PY38"
    set "pyVer=38"
    ensuring the PATH_TO_ANACONDA3_PY38 only uses forward slashes (/) as path seperators and points to the Anaconda3 directory, e.g. C:/Users/mbironi/Anaconda3/envs/py38/.
  3. Follow the instructions from above to build your desired configuration, appending the below to the CMake configuration before running CMake.
    -DBUILD_opencv_python3=ON -DPYTHON3_INCLUDE_DIR=%pathToAnaconda%/include -DPYTHON3_LIBRARY=%pathToAnaconda%/libs/python%pyVer%.lib -DPYTHON3_EXECUTABLE=%pathToAnaconda%/python.exe -DPYTHON3_NUMPY_INCLUDE_DIRS=%pathToAnaconda%/lib/site-packages/numpy/core/include -DPYTHON3_PACKAGES_PATH=%pathToAnaconda%/Lib/site-packages/ -DOPENCV_SKIP_PYTHON_LOADER=ON
  4. Make sure you build release, python bindings cannot by default be generated for a debug configuration, that is unless you have specificaly built or downloaded a debug version of python. That said you can easily generate a debug build by modifying the contents of pyconfig.h, changing
    pragma comment(lib,"python38_d.lib")
    to
    pragma comment(lib,"python38.lib")
    and
    #       define Py_DEBUG
    to
    //#       define Py_DEBUG
    The default location of pyconfig.h in the Anaconda3 for the py38 environment is %USERPROFILE%\Anaconda3\envs\py38\include\pyconfig.h. However the version you are compiling against may differ, to check the location simply open up CMake in the build directory as detailed in Adding additional configuration options with CMake GUI and check the entries under PYTHON3_INCLUDE_DIR.
  5. Verify that the cmake output detailing the modules to be built includes python3 and if not look for errors in the output preceding the below.
    --   OpenCV modules:
    --     To be built:                 aruco bgsegm bioinspired calib3d ccalib core cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev datasets dnn dnn_objdetect dpm face features2d flann fuzzy hfs highgui img_hash imgcodecs imgproc line_descriptor ml objdetect optflow phase_unwrapping photo plot python2 python3 quality reg rgbd saliency shape stereo stitching structured_light superres surface_matching text tracking ts video videoio videostab world xfeatures2d ximgproc xobjdetect xphoto
  6. In the current version of OpenCV (4.5.0), once generated the bindings (cv2.cp38-win_amd64.pyd) are copied to the site-packages directory, in our case
    "%USERPROFILE%\Anaconda3\envs\py38\Lib\site-packages\"
    To verify this and ensure that there are no historic installations of OpenCV either through pip or conda before continuing type the following
    dir "%USERPROFILE%\Anaconda3\envs\py38\Lib\site-packages\cv2*"
    and inspect the output
    17/04/2019  10:11    <DIR>         cv2
    12/10/2020  14:56        11,968,000 cv2.cp38-win_amd64.pyd
    You need to ensure that the date of the bindings copied to your installation of python (12/10/2020 14:56 in the above case) corresponds to the date and time of the build. Additionaly you must make sure that there are no other entries. In the above example the additional ouput showing a cv2 directory implies that there is an existing installation of OpenCV, either through pip or a previous build. This needs to be removed before continuing, with the method of removeal depending on how it was installed. If for some the above returns
    File Not Found
    first the verify that the python bindings have been built by entering
    dir "%openCvBuild%\lib\python3\cv2.cp38-win_amd64.pyd"
    or
    dir "%openCvBuild%\lib\python3\[Debug|Release]\cv2.cp38-win_amd64.pyd"
    if you built using from within Visual Studio, and confirming that the following file exists
    12/10/2020  14:56        11,968,000 cv2.cp38-win_amd64.pyd
    If the file has been found then this can be manually copied accross using the following.
    copy "%openCvBuild%\lib\python3\cv2.cp38-win_amd64.pyd" "%USERPROFILE%\Anaconda3\envs\py38\Lib\site-packages\cv2.cp38-win_amd64.pyd"
    or
    copy "%openCvBuild%\lib\python3\[Debug|Release]\cv2.cp38-win_amd64.pyd" "%USERPROFILE%\Anaconda3\envs\py38\Lib\site-packages\cv2.cp38-win_amd64.pyd"
    if you built using from within Visual Studio. Alternatively if the above also returns File Not Found then you need to ensure both that the build has completed successfully and that the output from step 4) contains python3.
  7. Include the path to the opencv_world440.dll and opencv_img_hash440.dll shared libraries in your user or system path or temporarily by entering
    set path=%openCvBuild%\install\x64\vc16\bin;%path%
  8. Test the freshly compiled python module can be located and loads correctly by entering
    python -c "import cv2; print(f'OpenCV: {cv2.__version__} for python installed and working')"
    and checking the output for
    OpenCV: 4.5.0 for python installed and working
    If you do not see the above output then see the troubleshooting section below.
If there were no errors from the above steps the Python bindings should be installed correctly. To use on a permanent basis don't forget to permanently add the path to the opencv_world450.dll shared library to your user or system path. To quickly verify that the CUDA modules can be called and check if there is any performance benefit on your system continue below, then to see how to get the most performance from the OpenCV Python CUDA bindings see Accelerating OpenCV with CUDA streams in Python. Troubleshooting, if the output from step (7) is:
  1. ModuleNotFoundError: No module named 'cv2'
    You have not copied the bindings to your python distribution, see step (5).
  2. ImportError: ERROR: recursion is detected during loading of "cv2" binary extensions. Check OpenCV installation.
    Ensure that you don't have OpenCV installed though conda and/or pip, and that you don't have another copy of the python bindings in your site-packages directory.
  3. ImportError: DLL load failed: The specified procedure could not be found.
    One of the required dll's is not present on your windows path. From the feedback I have received it is most likely you have not added the location of either the OpenCV shared libraries (opencv_world450.dll and opencv_img_hash440.dll), the path to the CUDA binaries, or the path to tbb.dll if built with Intel TBB. This can be quickly checked by entering in the following
    where opencv_world450.dll
    where opencv_img_hash450.dll
    where nppc64_11.dll
    where cudnn64_8.dll & :: if you have built the DNN module with the CUDA backend
    where tbb.dll & :: if you have built with Intel TBB
    and checking that you see the path to the dll in each case. If instead you see
    INFO: Could not find files for the given pattern(s).
    add the paths (step (5) above, step (4) from the Prerequisites and step (6) from the Pre-build Checklist) and check again. Once the you can see the paths to the dll's check step (7) again.
  4. If you get any other errors, make sure to check OpenCV is installed correctly by running through the steps in Verifying OpenCV is CUDA accelerated.

Troubleshooting common configuration/build errors

  • CUDA : OpenCV requires enabled 'cudev' module from 'opencv_contrib'
    The most common cause of this is that -DOPENCV_EXTRA_MODULES_PATH has been set to the root of the opencv_contrib repo and not the modules directory. Double check that
    -DOPENCV_EXTRA_MODULES_PATH=OPENCV_CONTRIB/modules
    not
    -DOPENCV_EXTRA_MODULES_PATH=OPENCV_CONTRIB
    where OPENCV_CONTRIB is the location of the opencv_contrib repo on your local machine.

Verifying OpenCV is CUDA accelerated

The easiest way to quickly verify that everything is working is to check that one of the inbuilt CUDA performance tests passes. For this I have chosen the GEMM test which;

  • runs without any external data;
  • should be highly optimized on both the GPU and CPU making it "informative" to compare the performance timings later on, and;
  • has OpenCL versions.
To run the CUDA performance test simply enter the following into the existing command prompt

"%openCvBuild%\install\x64\vc16\bin\opencv_perf_cudaarithm.exe" --gtest_filter=Sz_Type_Flags_GEMM.GEMM/29
(where %openCvBuild% is your build directory, or the directory which you extracted the downloaded binaries to) the full output is shown below. To verify that everything is working look for the " [ PASSED ] 1 test" text, shown in the image below. Note: If you have set OPENCV_TEST_DATA_PATH then this will fail the sanity check since CUDA 11.0.

The above test performed matrix multiplication on a 1024x1024x2 single precision matrix using an RTX 2080 Mobile GPU 100 times, with a mean execution time of 3.36 ms, which can be seen in the following output taken from the image above.

[ PERFSTAT ]    (samples=100   mean=3.32   median=3.28   min=3.24   stddev=0.1 (3.0%))
If the test has passed then we can confirm that the above code was successfully run on the GPU using CUDA.

For completeness this result is compared with the performance attainable on the CPU and with that obtained using OpenCl (cv::UMat) on both the CPU and GPU using both the C++ and python interfaces in OpenCV MKL/TBB vs cuBLAS.

Choosing the compute-capability

The default command line options given above implement NVIDIA's recommended settings for future hardware compatibility. This means that any programs linked against the resulting opencv_world450.dll shared library should work on all GPU's currently supported by CUDA 11.1 and all GPU's released in the future. As mentioned above this comes at a cost, both in terms of compilation time and shared library size. Before discussing the CMake settings which can be used to reduce these costs we need to understand the following concepts:

  • Compute-capability - every GPU has a fixed compute-capability which determines its general specifications and features. In general the more recent the GPU the higher the compute-capability and the more features it will support. This is important because:
    • Each version of CUDA supports different compute-capabilities. Usually a new version of CUDA comes out to suppoort a new GPU architecture, in the case of CUDA 11.0, support was added for the Ampere (compute 8.0, with compute 8.6 added in CUDA 11.1) architecture. On the flip side support for compute 3.0 and 3.2 was dropped. Therefore by choosing to build OpenCv with CUDA 11.1 we have limited ourselves to GPU's of compute-capability >=3.5. Notice we have not limited ourselves to compute-capability GPU's <=8.6, the reason for this is discussed in the next section.
    • You can build opencv_world450.dll to support one or many different compute-capabilities, depending on your specific requirements.
  • Supporting a compute-capability - to support a specific compute-capability you can do either of the following, or a combination of the two:
    • Generate architecture-specific cubin files, which are only forward-compatible with GPU architectures with the same major version number. This can be controlled by passing CUDA_ARCH_BIN to CMake. For example passing -DCUDA_ARCH_BIN=3.0 to CMake, will result in opencv_world450.dll containing binary code which can only run on compute-capability 3.0, 3.5 and 3.7 devices. Futhermore it will not support any specific features of compute-capability 3.5 (e.g. dynamic parallelism) or 3.7 (e.g. 128 K 32 bit registers). In the case of OpenCV 4.4.0 this will not restrict any functionality of the standard CUDA functions on compute capability 3.5 and 3.7 devices, because they only uses features from compute-capability 3.0 and below. This can be confirmed by a quick search of the main and contrib repositories for the __CUDA_ARCH__ flag.
    • Generate forward-compatible PTX assembly for a virtual architecture, which is forward-compatable with all GPU architectures of greater than or equal compute-capability. This can be controlled by passing CUDA_ARCH_PTX to CMake. For example by passing -DCUDA_ARCH_PTX=8.6 to CMake, the opencv_world450.dll will contain PTX code for compute-capability 8.6 which can be Just In Time (JIT) compiled to architecture-specific binary code by the CUDA driver, on any future GPU architectures. Because of the default CMake rules when CUDA_ARCH_BIN is not explicitly set it will also contain architecture-specific cubin files for GPU architectures 3.5-8.6.
  • PTX considerations - given that PTX code is forward-compatible and cubin binaries are not it would be tempting to only include the former. To understand why this might not be such a great idea, a things to be aware of when generating PTX code:
    1. As mentioned previously the CUDA driver JIT compiles PTX code at run time and cache's the resulting cubin files so that the compile operation should in theory be a one-time delay, at least until the driver is updated. However if the cache is not large enough JIT compilation will happen every time, causing delay every time your program executes.To get an idea of this delay I passed -DCUDA_ARCH_BIN=3.5 and -DCUDA_ARCH_PTX=3.5 to CMake before building OpenCV. I then emptied the cache (default location %appdata%\NVIDIA\ComputeCache\) and ran the GEMM performance example on a GTX 1060 (compute-capability 6.1), to force JIT compilation. I measured an initial delay of over 3 minutes as the PTX code was JIT compiled before the program started to execute. Following that, the delay of subsequent executions was around a minute, because the default cache size (256 MB) was not large enough to store all the compiled PTX code. Given my compile options the only solution to remove this delay is to increase the size of the cache by setting the CUDA_CACHE_MAXSIZE environmental variable to a number of bytes greater than required. Unfortunately because, "Older binary codes are evicted from the cache to make room for newer binary codes if needed", this is more of a band aid than a solution. This is because the maximum cache size is 4 GB, therefore your PTX compiled code can be evicted at any point in time if other programs on your machine are also JIT compiling from PTX, bringing back the "one-time" only delay.
    2. For maximum device coverage you should include PTX for the lowest possible GPU architecture you want to support.
    3. For maximum performance NVIDIA recommends including PTX for the highest possible architecture you can.

CMake command line options to control cubin/PTX content of the OpenCV shared library

Given (1)-(3) above, the command line options that you want to pass to CMake when building OpenCV will depend on your specific requirements. I have given some examples below for various scenarios given a main GPU of compute-capability 6.1:
  • Firstly stick with the defaults if compile time and shared library size are not an issue. This offers the greatest amount of flexibility from a development standpoint, avoiding the possibility of needing to recompile OpenCV when you switch GPU.
  • If your programs will always be run on your main GPU, just pass -DCUDA_ARCH_BIN=6.1 to CMake to target your architecture only. It should take around an hour to build, depending on your CPU and the resulting shared library should not be larger than 200 MB.
  • If you are going to deploy your application, but only to newer GPU's pass -DCUDA_ARCH_BIN=6.1,7.0,8.0,8.6 and -DCUDA_ARCH_PTX=8.6 to CMake for maximum performance and future compatibility.This is advisable because you may not have any control over the size of the JIT cache on the target machine, therefore including cubin's for all compute-capabilities you want to support, is the only way be sure to prevent JIT compilation delay on every invocation of your application.
  • If size is really an issue but you don't know which GPU's you want to run your application on then to ensure that your program will run on all current and future supported GPU's pass -DCUDA_ARCH_BIN=6.1 and -DCUDA_ARCH_PTX=3.0 to CMake for maximum coverage.

Because the pre-built Windows libraries available for OpenCV do not include the CUDA modules, or support for the Nvidia Video Codec SDK, Nvidia cuDNN, Intel Media SDK or Intel’s Math Kernel Libraries (MKL) or Intel Threaded Building Blocks (TBB) performance libraries, I have included the build instructions, below for anyone who is interested. If you just need the Windows libraries then go to Download OpenCV 4.5.0 with CUDA 11.1. To get an indication of the performance boost from calling the OpenCV CUDA functions with these libraries see the OpenCV 3.4 GPU CUDA Performance Comparisson (nvidia vs intel).

The guide below details instructions on compiling the 64 bit version of OpenCV 4.5.0 shared libraries with Visual Studio 2019, CUDA 11.1, and optionally the Nvidia Video Codec SDK, Nvidia cuDNN, Intel Media SDK, Intel Math Kernel Libraries (MKL), Intel Threaded Building Blocks (TBB) and Python bindings for accessing OpenCV CUDA modules from within Python.

The main topics covered are given below. Although most of the sections can be read in isolation I recommend reading the pre-build checklist first to check whether you will benefit from and/or need to compile OpenCV with CUDA support.

Make sure not to let opencv install for python -DOPENCV_SKIP_PYTHON_LOADER=ON Find example and write about depends - what could be missing. Try installing new env and building. Needs to be in cv2 directory - is this always the case? Some python distributions don't use the system path therefore without an init, can't detect dll, Nothing works on miniconda -> which dll is missing? Write usage of process monitor -> Is there an easy way to filter only by files which couldn't be found -> probably not but could use python Is there an alternative to os.add_dll_directory? No need to add them all -> this would be better handled in the init script? import os os.add_dll_directory("C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin") os.add_dll_directory("D:\3rd_party\deps\ffmpeg-n5.0-latest-win64-gpl-shared-5.0\bin") os.add_dll_directory("D:\build\opencv\cuda_11_7_cc_8_6_ff_sym\install\x64\vc17\bin") ? add init script to do this ? Including pyd

"C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\bin", "D:\3rd_party\deps\ffmpeg-n5.0-latest-win64-gpl-shared-5.0\bin"